Example usage for io.netty.channel.local LocalEventLoopGroup LocalEventLoopGroup

List of usage examples for io.netty.channel.local LocalEventLoopGroup LocalEventLoopGroup

Introduction

In this page you can find the example usage for io.netty.channel.local LocalEventLoopGroup LocalEventLoopGroup.

Prototype

public LocalEventLoopGroup(ThreadFactory threadFactory) 

Source Link

Document

Create a new instance with the default number of threads and the given ThreadFactory .

Usage

From source file:com.whizzosoftware.hobson.api.plugin.AbstractHobsonPlugin.java

License:Open Source License

public AbstractHobsonPlugin(String pluginId) {
    this(pluginId, new LocalEventLoopGroup(1));
}