当前位置: 首页>>代码示例>>Java>>正文


Java Sets.newSetFromMap方法代码示例

本文整理汇总了Java中com.google.common.collect.Sets.newSetFromMap方法的典型用法代码示例。如果您正苦于以下问题:Java Sets.newSetFromMap方法的具体用法?Java Sets.newSetFromMap怎么用?Java Sets.newSetFromMap使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.google.common.collect.Sets的用法示例。


在下文中一共展示了Sets.newSetFromMap方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: activate

import com.google.common.collect.Sets; //导入方法依赖的package包/类
@Activate
private void activate() {
    components = Sets.newSetFromMap(new ConcurrentHashMap<>());

    executor = Executors.newScheduledThreadPool(NUM_THREADS,
            groupedThreads("onos/component", "%d"));

    executor.scheduleAtFixedRate(() -> components.forEach(this::enableComponent),
            0, POLLING_PERIOD_MS, TimeUnit.MILLISECONDS);

    log.info("Started");
}
 
开发者ID:shlee89,项目名称:athena,代码行数:13,代码来源:ComponentManager.java

示例2: newCaseInsensitiveSet

import com.google.common.collect.Sets; //导入方法依赖的package包/类
public static Set<String> newCaseInsensitiveSet() {
    return Sets.newSetFromMap(new CaseInsensitiveMap<Boolean>());
}
 
开发者ID:GelandiAssociation,项目名称:EscapeLag,代码行数:4,代码来源:AzureAPI.java

示例3: newConcurrentSet

import com.google.common.collect.Sets; //导入方法依赖的package包/类
public static <V> Set<V> newConcurrentSet() {
    return Sets.newSetFromMap(ConcurrentCollections.<V, Boolean>newConcurrentMap());
}
 
开发者ID:baidu,项目名称:Elasticsearch,代码行数:4,代码来源:ConcurrentCollections.java

示例4: newCaseInsensitiveSet

import com.google.common.collect.Sets; //导入方法依赖的package包/类
@SuppressWarnings("deprecation")
public static Set<String> newCaseInsensitiveSet() {
    return Sets.newSetFromMap(new CaseInsensitiveMap<Boolean>());
}
 
开发者ID:Recraft,项目名称:Recreator,代码行数:5,代码来源:AzureAPI.java

示例5: newConcurrentHashSet

import com.google.common.collect.Sets; //导入方法依赖的package包/类
/**
 * Creates a thread-safe set backed by a hash map. The set is backed by a
 * {@link ConcurrentHashMap} instance, and thus carries the same concurrency
 * guarantees.
 *
 * <p>Unlike {@code HashSet}, this class does NOT allow {@code null} to be
 * used as an element. The set is serializable.
 *
 * @return a new, empty thread-safe {@code Set}
 * @since 15.0
 */
public static <E> Set<E> newConcurrentHashSet() {
  return Sets.newSetFromMap(new ConcurrentHashMap<E, Boolean>());
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:15,代码来源:ChildReaper.java


注:本文中的com.google.common.collect.Sets.newSetFromMap方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。