use of org.jboss.netty.util.HashedWheelTimer in project graylog2-server by Graylog2.
the class AbstractTcpTransportTest method setUp.
@Before
public void setUp() {
throughputCounter = new ThroughputCounter(new HashedWheelTimer());
localRegistry = new LocalMetricRegistry();
bossPool = MoreExecutors.directExecutor();
workerPool = MoreExecutors.directExecutor();
connectionCounter = new ConnectionCounter();
}
Aggregations