Package marauroa.server

Examples of marauroa.server.RWLock


  protected PlayerEntryContainer() {
    /* Initialize the random number generator */
    rand = new Random();
    rand.setSeed(new Date().getTime());

    lock = new RWLock();

    /* We initialize the list that will help us sort the player entries. */
    clientidMap = Collections.synchronizedMap(new HashMap<Integer, PlayerEntry>());
  }
View Full Code Here

TOP

Related Classes of marauroa.server.RWLock

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.