com.firefly.net.Worker Maven / Gradle / Ivy
package com.firefly.net;
import java.nio.channels.Channel;
public interface Worker {
void registerChannel(Channel channel, int sessionId);
void shutdown();
}
package com.firefly.net;
import java.nio.channels.Channel;
public interface Worker {
void registerChannel(Channel channel, int sessionId);
void shutdown();
}