/** * State - A simple helper structure that tells us about the state * of the list inside a Synchrolist. */ public class State { int pos; int players; boolean blocking; public State(int p, int pl, boolean bl) { pos = p; players = pl; blocking = bl; } }