Package org.spoutcraft.client.io

Examples of org.spoutcraft.client.io.FileMap


  private final HashMap<Long, byte[]> overwriteBackup = new HashMap<Long, byte[]>();
  private final ConcurrentLinkedQueue<Long> overwriteQueue = new ConcurrentLinkedQueue<Long>();
  private final long size;

  public PersistentMap(File dir, String filename, long size, int entries) throws IOException {
    f = new FileMap(dir, filename, size, entries);
    this.size = size;
  }
View Full Code Here

TOP

Related Classes of org.spoutcraft.client.io.FileMap

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.