Examples of TSyncIntHashSet


Examples of org.spout.api.util.set.concurrent.TSyncIntHashSet

    if (cY < 0 || cY >= WORLD_HEIGHT >> Chunk.BLOCKS.BITS) {
      return;
    }

    TSyncIntHashSet column = initChunks.get(x, z);
    if (column == null) {
      column = new TSyncIntHashSet();
      synchronized (initChunkLock) {
        TSyncIntHashSet oldColumn = initChunks.putIfAbsent(x, z, column);
        if (oldColumn != null) {
          column = oldColumn;
        }
      }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.