69707172737475
private final ConcurrentMap<Long, InternalTimerHandler> timeouts = new ConcurrentHashMap<>(); private final AtomicLong timeoutCounter = new AtomicLong(0); public DefaultVertx() { this.eventBus = new DefaultEventBus(this); }
77787980818283
public DefaultVertx(String hostname) { this(DEFAULT_CLUSTER_PORT, hostname); } public DefaultVertx(int port, String hostname) { this.eventBus = new DefaultEventBus(this, port, hostname, new HazelcastClusterManager(this)); }