當前位置: 首頁>>代碼示例>>Java>>正文


Java MapMaker.makeMap方法代碼示例

本文整理匯總了Java中com.google.common.collect.MapMaker.makeMap方法的典型用法代碼示例。如果您正苦於以下問題:Java MapMaker.makeMap方法的具體用法?Java MapMaker.makeMap怎麽用?Java MapMaker.makeMap使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.google.common.collect.MapMaker的用法示例。


在下文中一共展示了MapMaker.makeMap方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: SimpleScoreboardElement

import com.google.common.collect.MapMaker; //導入方法依賴的package包/類
public SimpleScoreboardElement(Plugin plugin, int priority, long updateDelay,
                               List<FrameSupply> contents) {
    this.priority = priority;
    this.contents = Lists.newCopyOnWriteArrayList(contents);
    this.plugin = plugin;
    // forced update delay so that players can be cleaned out // implementation specific
    this.updateDelay = updateDelay > 0 ? updateDelay : 20L * 10;
    this.isTitle = priority < 0;

    MapMaker mapMaker = new MapMaker().weakKeys();
    this.playerContentsMap = mapMaker.makeMap();
    this.cachedContents = mapMaker.makeMap();

    Bukkit.getScheduler()
            .runTaskTimerAsynchronously(plugin, this::updateAnimations, 1l, this.updateDelay);
}
 
開發者ID:t7seven7t,項目名稱:ViewIt,代碼行數:17,代碼來源:SimpleScoreboardElement.java

示例2: ForgeTimeTracker

import com.google.common.collect.MapMaker; //導入方法依賴的package包/類
private ForgeTimeTracker()
{
    MapMaker mm = new MapMaker();
    mm.weakKeys();
    tileEntityTimings = mm.makeMap();
    //entityTimings = mm.makeMap();
}
 
開發者ID:F1r3w477,項目名稱:CustomWorldGen,代碼行數:8,代碼來源:ForgeTimeTracker.java

示例3: ForgeTimeTracker

import com.google.common.collect.MapMaker; //導入方法依賴的package包/類
private ForgeTimeTracker()
{
    MapMaker mm = new MapMaker();
    mm.weakKeys();
    tileEntityTimings = mm.makeMap();
    entityTimings = mm.makeMap();
}
 
開發者ID:SchrodingersSpy,項目名稱:TRHS_Club_Mod_2016,代碼行數:8,代碼來源:ForgeTimeTracker.java

示例4: makeNodeMap

import com.google.common.collect.MapMaker; //導入方法依賴的package包/類
protected ConcurrentMap<NodeId, ServerNode> makeNodeMap(MapMaker mapMaker) {
    return mapMaker.makeMap();
}
 
開發者ID:eclipse,項目名稱:milo,代碼行數:4,代碼來源:AbstractServerNodeMap.java

示例5: newWeakConcurrentMap

import com.google.common.collect.MapMaker; //導入方法依賴的package包/類
public static <K, V> ConcurrentMap<K, V> newWeakConcurrentMap(int initialCapacity) {
    final MapMaker weakMapMaker = createWeakMapMaker();
    weakMapMaker.initialCapacity(initialCapacity);
    return weakMapMaker.makeMap();
}
 
開發者ID:masonmei,項目名稱:apm-agent,代碼行數:6,代碼來源:Maps.java

示例6: makeNodeMap

import com.google.common.collect.MapMaker; //導入方法依賴的package包/類
protected ConcurrentMap<NodeId, UaNode> makeNodeMap(MapMaker mapMaker) {
    return mapMaker.makeMap();
}
 
開發者ID:digitalpetri,項目名稱:ua-server-sdk,代碼行數:4,代碼來源:AbstractUaNodeManager.java

示例7: newWeakConcurrentMap

import com.google.common.collect.MapMaker; //導入方法依賴的package包/類
public static <K, V> ConcurrentMap<K, V> newWeakConcurrentMap() {
    MapMaker weakMapMaker = createWeakMapMaker();
    return weakMapMaker.makeMap();
}
 
開發者ID:naver,項目名稱:pinpoint,代碼行數:5,代碼來源:Maps.java


注:本文中的com.google.common.collect.MapMaker.makeMap方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。