public interface  io.netty.channel.socket.ServerSocketChannelConfig extends java.lang.Object implements io.netty.channel.ChannelConfig
{
public abstract int getBacklog();
public abstract io.netty.channel.socket.ServerSocketChannelConfig setBacklog(int);
public abstract boolean isReuseAddress();
public abstract io.netty.channel.socket.ServerSocketChannelConfig setReuseAddress(boolean);
public abstract int getReceiveBufferSize();
public abstract io.netty.channel.socket.ServerSocketChannelConfig setReceiveBufferSize(int);
public abstract io.netty.channel.socket.ServerSocketChannelConfig setPerformancePreferences(int, int, int);
public abstract io.netty.channel.socket.ServerSocketChannelConfig setConnectTimeoutMillis(int);
public abstract io.netty.channel.socket.ServerSocketChannelConfig setMaxMessagesPerRead(int);
public abstract io.netty.channel.socket.ServerSocketChannelConfig setWriteSpinCount(int);
public abstract io.netty.channel.socket.ServerSocketChannelConfig setAllocator(io.netty.buffer.ByteBufAllocator);
public abstract io.netty.channel.socket.ServerSocketChannelConfig setRecvByteBufAllocator(io.netty.channel.RecvByteBufAllocator);
public abstract io.netty.channel.socket.ServerSocketChannelConfig setAutoRead(boolean);
public abstract io.netty.channel.socket.ServerSocketChannelConfig setMessageSizeEstimator(io.netty.channel.MessageSizeEstimator);
public abstract io.netty.channel.socket.ServerSocketChannelConfig setWriteBufferHighWaterMark(int);
public abstract io.netty.channel.socket.ServerSocketChannelConfig setWriteBufferLowWaterMark(int);
public abstract io.netty.channel.socket.ServerSocketChannelConfig setWriteBufferWaterMark(io.netty.channel.WriteBufferWaterMark);
}