netty5/transport/src/main/java/io/netty/channel/EventLoop.java

10 lines
263 B
Java
Raw Normal View History

package io.netty.channel;
import java.util.concurrent.ExecutorService;
public interface EventLoop extends ExecutorService {
2012-04-03 15:19:35 +02:00
ChannelFuture register(Channel channel);
EventLoop register(Channel channel, ChannelFuture future);
boolean inEventLoop();
}