Examples of ConcurrentLinkedQueue


Examples of java.util.concurrent.ConcurrentLinkedQueue

      this.maxSegmentWeight = paramLong;
      this.statsCounter = paramStatsCounter;
      initTable(newEntryArray(paramInt));
      this.keyReferenceQueue = (paramLocalCache.usesKeyReferences() ? new ReferenceQueue() : null);
      this.valueReferenceQueue = (paramLocalCache.usesValueReferences() ? new ReferenceQueue() : null);
      this.recencyQueue = (paramLocalCache.usesAccessQueue() ? new ConcurrentLinkedQueue() : LocalCache.discardingQueue());
      this.writeQueue = (paramLocalCache.usesWriteQueue() ? new LocalCache.WriteQueue() : LocalCache.discardingQueue());
      this.accessQueue = (paramLocalCache.usesAccessQueue() ? new LocalCache.AccessQueue() : LocalCache.discardingQueue());
    }
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.