List of usage examples for io.netty.channel EventLoopGroup interface-usage
From source file code.google.nfs.rpc.netty4.eventloop.EpollForkJoinEventLoopGroup.java
public class EpollForkJoinEventLoopGroup implements EventLoopGroup { ForkJoinPool forkJoinPool; public EpollForkJoinEventLoopGroup() { this(0); }
From source file de.unipassau.isl.evs.ssh.core.schedule.ExecutionServiceComponent.java
/**
* An ExecutorService that can schedule commands to run after a given
* delay, or to execute periodically.
*
* @author Christoph Fraedrich
*/
From source file io.advantageous.conekt.net.impl.ConektEventLoopGroup.java
/** * @author <a href="http://tfox.org">Tim Fox</a> */ @SuppressWarnings("deprecation") public final class ConektEventLoopGroup extends AbstractEventExecutorGroup implements EventLoopGroup {
From source file io.jsync.net.impl.AsyncEventLoopGroup.java
/** * @author <a href="http://tfox.org">Tim Fox</a> */ @SuppressWarnings("deprecation") public final class AsyncEventLoopGroup extends AbstractEventExecutorGroup implements EventLoopGroup {
From source file io.reactivex.netty.contexts.ContextAwareEventLoopGroup.java
/** * @author Nitesh Kant */ public class ContextAwareEventLoopGroup implements EventLoopGroup { private final EventLoopGroup delegate;
From source file io.vertx.core.net.impl.VertxEventLoopGroup.java
/** * @author <a href="http://tfox.org">Tim Fox</a> */ @SuppressWarnings("deprecation") public final class VertxEventLoopGroup extends AbstractEventExecutorGroup implements EventLoopGroup {
From source file org.apache.activemq.artemis.core.remoting.impl.netty.DelegatingEventLoopGroup.java
public class DelegatingEventLoopGroup implements EventLoopGroup { private final EventLoopGroup delegate; public DelegatingEventLoopGroup(EventLoopGroup eventLoopGroup) { this.delegate = eventLoopGroup;
From source file org.fusesource.hawtdispatch.netty.AbstractHawtEventLoopGroup.java
/** * Abstract base class for {@link EventLoopGroup} implementations that are backed by hawtdispatch. * * @author <a href="mailto:nmaurer@redhat.com">Norman Maurer</a> */ abstract class AbstractHawtEventLoopGroup implements EventLoopGroup {
From source file org.vertx.java.core.net.impl.VertxEventLoopGroup.java
/** * @author <a href="http://tfox.org">Tim Fox</a> */ @SuppressWarnings("deprecation") public final class VertxEventLoopGroup extends AbstractEventExecutorGroup implements EventLoopGroup {
From source file reactor.ipc.netty.options.ColocatedEventLoopGroup.java
/** * Reuse local event loop if already working inside one. */ final class ColocatedEventLoopGroup implements EventLoopGroup { final EventLoopGroup eventLoopGroup;