Example usage for io.vertx.core.impl ConcurrentHashSet ConcurrentHashSet

List of usage examples for io.vertx.core.impl ConcurrentHashSet ConcurrentHashSet

Introduction

In this page you can find the example usage for io.vertx.core.impl ConcurrentHashSet ConcurrentHashSet.

Prototype

public ConcurrentHashSet(int size) 

Source Link

Usage

From source file:org.vertx.java.resourceadapter.ChoosableSet.java

License:Open Source License

public ChoosableSet(int initialSize) {
    ids = new ConcurrentHashSet<>(initialSize);
}