com.zusmart.base.network.ChannelOption 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;
public interface ChannelOption {
public int getBackLog();
public int getSoTimeout();
public int getBufferSize();
public boolean isDirectBuffer();
public boolean isReuseAddress();
public int getNioSelectorSize();
public String getNioAcceptorName();
public String getNioSelectorName();
}