com.zusmart.base.network.ChannelContextManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zusmart-base Show documentation
Show all versions of zusmart-base Show documentation
提供基础的工具类及方法类,Logging,Scanner,Buffer,NetWork,Future,Thread
package com.zusmart.base.network;
import java.nio.channels.SocketChannel;
import java.util.Map;
import com.zusmart.base.activity.Activity;
public interface ChannelContextManager extends Activity {
public ChannelContext createChannelContext(SocketChannel socketChannel);
public ChannelContext getChannelContext(String contextCode);
public Map getChannelContexts();
}