• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java ReferenceMap类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.apache.commons.collections4.map.ReferenceMap的典型用法代码示例。如果您正苦于以下问题:Java ReferenceMap类的具体用法?Java ReferenceMap怎么用?Java ReferenceMap使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



ReferenceMap类属于org.apache.commons.collections4.map包,在下文中一共展示了ReferenceMap类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: AbstractTransaction

import org.apache.commons.collections4.map.ReferenceMap; //导入依赖的package包/类
AbstractTransaction(String id, StorageAccessIF access) {
  this.id = id;
  this.access = access;
  this.mapping = access.getStorage().getMapping();

  // Map containing named queries
  this.querymap = new HashMap<String, QueryIF>();
  
  // Identity map - maintains the relationships between object
  // identities and the single(ton) instances used with the
  // transaction. This enforces the constraint that only one
  // instance per object identity should exist at a given time in a
  // transaction.
  
  // NOTE: Even though it's the keys that are garbage collected
  // there is a strict mapping between IdentityIF and PersistentIF
  // that lets us do this, i.e. the objects reference their
  // identities, so the identity will not be garbage collected as
  // long as the object is reachable.
  this.identity_map = new ReferenceMap<IdentityIF, PersistentIF>(AbstractReferenceMap.ReferenceStrength.HARD, AbstractReferenceMap.ReferenceStrength.SOFT);

  log.debug(getId() + ": Transaction created.");
  this.timestamp = System.currentTimeMillis();
}
 
开发者ID:ontopia,项目名称:ontopia,代码行数:25,代码来源:AbstractTransaction.java


示例2: getCustomResourceClassLoader

import org.apache.commons.collections4.map.ReferenceMap; //导入依赖的package包/类
public ResourceClassLoader getCustomResourceClassLoader(Resource[] resources) throws IOException{

		if (ArrayUtil.isEmpty(resources))
			return this;

		String key = hash(resources);
		ResourceClassLoader rcl = (customCLs == null) ? null : customCLs.get(key);

		if (rcl != null)
			return rcl;
		
		resources = ResourceUtil.merge(this.getResources(), resources);
		rcl = new ResourceClassLoader(resources, getParent());

		if (customCLs == null)
			customCLs = new ReferenceMap<String,ResourceClassLoader>();

		customCLs.put(key, rcl);
		return rcl;
	}
 
开发者ID:lucee,项目名称:Lucee,代码行数:21,代码来源:ResourceClassLoader.java


示例3: ResourceManager

import org.apache.commons.collections4.map.ReferenceMap; //导入依赖的package包/类
@SuppressWarnings("unchecked")
private ResourceManager() {
  // resources = new HashMap<String, IResource>();
  resources = new ReferenceMap(AbstractReferenceMap.ReferenceStrength.SOFT,
      AbstractReferenceMap.ReferenceStrength.SOFT, true);
  random = new SecureRandom();
}
 
开发者ID:jspresso,项目名称:jspresso-ce,代码行数:8,代码来源:ResourceManager.java


示例4: BasicRemotePeerRegistry

import org.apache.commons.collections4.map.ReferenceMap; //导入依赖的package包/类
/**
 * Constructs a new {@code BasicRemotePeerRegistry} instance.
 */
@SuppressWarnings("unchecked")
public BasicRemotePeerRegistry() {
  backingStore = new RemotePeerReferenceMap(AbstractReferenceMap.ReferenceStrength.WEAK,
      AbstractReferenceMap.ReferenceStrength.WEAK, true);
  automationBackingStore = new ReferenceMap(AbstractReferenceMap.ReferenceStrength.WEAK,
      AbstractReferenceMap.ReferenceStrength.WEAK, true);
  automationIndices = new HashMap<>();
  setAutomationEnabled(true);
}
 
开发者ID:jspresso,项目名称:jspresso-ce,代码行数:13,代码来源:BasicRemotePeerRegistry.java


示例5: LocatorLookup

import org.apache.commons.collections4.map.ReferenceMap; //导入依赖的package包/类
public LocatorLookup(String qname, TransactionIF txn, TopicMapIF tm, int lrusize, E nullObject) {
  this.qname = qname;
  this.txn = txn;
  this.tm = tm;
  this.lrusize = lrusize;
  this.cache = new ReferenceMap<LocatorIF, E>(AbstractReferenceMap.ReferenceStrength.SOFT, AbstractReferenceMap.ReferenceStrength.HARD);
  this.lru = new LRUMap<LocatorIF, E>(lrusize);
  NULLOBJECT = nullObject;
}
 
开发者ID:ontopia,项目名称:ontopia,代码行数:10,代码来源:LocatorLookup.java


示例6: QueryLookup

import org.apache.commons.collections4.map.ReferenceMap; //导入依赖的package包/类
public QueryLookup(String qname, TransactionIF txn, int lrusize, V nullObject) {
   this.qname = qname;
   this.txn = txn;
   this.cache = new ReferenceMap(AbstractReferenceMap.ReferenceStrength.SOFT, AbstractReferenceMap.ReferenceStrength.HARD);
   this.lru = new LRUMap(lrusize);
NULLOBJECT = nullObject;
 }
 
开发者ID:ontopia,项目名称:ontopia,代码行数:8,代码来源:QueryLookup.java


示例7: getCustomClassLoader

import org.apache.commons.collections4.map.ReferenceMap; //导入依赖的package包/类
public PhysicalClassLoader getCustomClassLoader(Resource[] resources, boolean reload) throws IOException{
	if(ArrayUtil.isEmpty(resources)) return this;
	String key = hash(resources);
	
	if(reload && customCLs!=null) customCLs.remove(key);
	
	
	PhysicalClassLoader pcl=customCLs==null?null:customCLs.get(key);
	if(pcl!=null) return pcl; 
	pcl=new PhysicalClassLoader(config,getDirectory(),new ClassLoader[]{new ResourceClassLoader(resources,getParent())},true);
	if(customCLs==null)customCLs=new ReferenceMap<String,PhysicalClassLoader>();
	customCLs.put(key, pcl);
	return pcl;
}
 
开发者ID:lucee,项目名称:Lucee,代码行数:15,代码来源:PhysicalClassLoader.java


示例8: getCustomResourceClassLoader2

import org.apache.commons.collections4.map.ReferenceMap; //导入依赖的package包/类
public ResourceClassLoader getCustomResourceClassLoader2(Resource[] resources) throws IOException{
	if(ArrayUtil.isEmpty(resources)) return this;
	String key = hash(resources);
	ResourceClassLoader rcl=customCLs==null?null:customCLs.get(key);
	if(rcl!=null) return rcl; 
	
	rcl=new ResourceClassLoader(resources,this);
	if(customCLs==null)customCLs=new ReferenceMap<String,ResourceClassLoader>();
	customCLs.put(key, rcl);
	return rcl;
}
 
开发者ID:lucee,项目名称:Lucee,代码行数:12,代码来源:ResourceClassLoader.java


示例9: createContractStoreMap

import org.apache.commons.collections4.map.ReferenceMap; //导入依赖的package包/类
@SuppressWarnings("unchecked")
private Map<Serializable, IEntity> createContractStoreMap() {
  return new ReferenceMap(AbstractReferenceMap.ReferenceStrength.HARD, AbstractReferenceMap.ReferenceStrength.WEAK,
      true);
}
 
开发者ID:jspresso,项目名称:jspresso-ce,代码行数:6,代码来源:BasicEntityRegistry.java


示例10: createSoftHashMap

import org.apache.commons.collections4.map.ReferenceMap; //导入依赖的package包/类
private <K, V> Map<K, V> createSoftHashMap() {
  return new ReferenceMap<K, V>(AbstractReferenceMap.ReferenceStrength.SOFT, AbstractReferenceMap.ReferenceStrength.HARD);
}
 
开发者ID:ontopia,项目名称:ontopia,代码行数:4,代码来源:DefaultCaches.java


示例11: getProcedureColumnCache

import org.apache.commons.collections4.map.ReferenceMap; //导入依赖的package包/类
public Map<String,ProcMetaCollection> getProcedureColumnCache() {
	if(procedureColumnCache==null)
		procedureColumnCache=new ReferenceMap<String,ProcMetaCollection>();
	return procedureColumnCache;
}
 
开发者ID:lucee,项目名称:Lucee,代码行数:6,代码来源:DataSourceSupport.java


示例12: BidiReferenceMap

import org.apache.commons.collections4.map.ReferenceMap; //导入依赖的package包/类
public BidiReferenceMap(AbstractReferenceMap.ReferenceStrength keyType, AbstractReferenceMap.ReferenceStrength valueType, int capacity, float loadFactor, boolean purgeValues){
super(new ReferenceMap<K,V>(keyType,valueType,capacity,loadFactor,purgeValues), 
	new ReferenceMap<V,K>(keyType,valueType,capacity,loadFactor,purgeValues),null);
   }
 
开发者ID:jtrfp,项目名称:terminal-recall,代码行数:5,代码来源:BidiReferenceMap.java


示例13: StructImpl

import org.apache.commons.collections4.map.ReferenceMap; //导入依赖的package包/类
/**
 * This implementation spares its clients from the unspecified, 
 * generally chaotic ordering provided by normally Struct , 
 * without incurring the increased cost associated with TreeMap. 
 * It can be used to produce a copy of a map that has the same order as the original
 * @param type
 * @param initialCapacity initial capacity - MUST be a power of two.
 */
public StructImpl(int type, int initialCapacity) {
	if(type==TYPE_WEAKED)	map=new SyncMap<Collection.Key, Object>(new WeakHashMapPro<Collection.Key,Object>(initialCapacity));
	else if(type==TYPE_SOFT)	map=new SyncMap<Collection.Key, Object>(new MapProWrapper<Collection.Key, Object>(new ReferenceMap<Collection.Key, Object>(HARD,SOFT,initialCapacity,0.75f),new SerializableObject()));
	else if(type==TYPE_LINKED)		map=new SyncMap<Collection.Key, Object>(new LinkedHashMapPro<Collection.Key,Object>(initialCapacity));
	else if(type==TYPE_LINKED_NOT_SYNC)		map=new LinkedHashMapPro<Collection.Key,Object>(initialCapacity);
	else 						map=MapFactory.getConcurrentMap(initialCapacity);
}
 
开发者ID:lucee,项目名称:Lucee,代码行数:16,代码来源:StructImpl.java



注:本文中的org.apache.commons.collections4.map.ReferenceMap类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java EnchantInventory类代码示例发布时间:2022-05-22
下一篇:
Java Tuple7类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap