All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fartherp.framework.remoting.netty.NettyServerConfig Maven / Gradle / Ivy

There is a newer version: 3.0.4
Show newest version
/*
 * Copyright (c) 2017. CK. All rights reserved.
 */

package com.github.fartherp.framework.remoting.netty;

/**
 * @author hyssop
 */
public class NettyServerConfig implements Cloneable {
    private int listenPort = 8888;
    private int serverWorkerThreads = 8;
    private int serverCallbackExecutorThreads = 0;
    private int serverSelectorThreads = 3;
    private int serverOnewaySemaphoreValue = 256;
    private int serverAsyncSemaphoreValue = 64;
    private int serverChannelMaxIdleTimeSeconds = 120;

    private int serverSocketSndBufSize = NettySystemConfig.socketSndbufSize;
    private int serverSocketRcvBufSize = NettySystemConfig.socketRcvbufSize;
    private boolean serverPooledByteBufAllocatorEnable = true;

    /**
     * make make install
     * 

*

* ../glibc-2.10.1/configure \ --prefix=/usr \ --with-headers=/usr/include \ * --host=x86_64-linux-gnu \ --build=x86_64-pc-linux-gnu \ --without-gd */ private boolean useEpollNativeSelector = false; public int getListenPort() { return listenPort; } public void setListenPort(int listenPort) { this.listenPort = listenPort; } public int getServerWorkerThreads() { return serverWorkerThreads; } public void setServerWorkerThreads(int serverWorkerThreads) { this.serverWorkerThreads = serverWorkerThreads; } public int getServerSelectorThreads() { return serverSelectorThreads; } public void setServerSelectorThreads(int serverSelectorThreads) { this.serverSelectorThreads = serverSelectorThreads; } public int getServerOnewaySemaphoreValue() { return serverOnewaySemaphoreValue; } public void setServerOnewaySemaphoreValue(int serverOnewaySemaphoreValue) { this.serverOnewaySemaphoreValue = serverOnewaySemaphoreValue; } public int getServerCallbackExecutorThreads() { return serverCallbackExecutorThreads; } public void setServerCallbackExecutorThreads(int serverCallbackExecutorThreads) { this.serverCallbackExecutorThreads = serverCallbackExecutorThreads; } public int getServerAsyncSemaphoreValue() { return serverAsyncSemaphoreValue; } public void setServerAsyncSemaphoreValue(int serverAsyncSemaphoreValue) { this.serverAsyncSemaphoreValue = serverAsyncSemaphoreValue; } public int getServerChannelMaxIdleTimeSeconds() { return serverChannelMaxIdleTimeSeconds; } public void setServerChannelMaxIdleTimeSeconds(int serverChannelMaxIdleTimeSeconds) { this.serverChannelMaxIdleTimeSeconds = serverChannelMaxIdleTimeSeconds; } public int getServerSocketSndBufSize() { return serverSocketSndBufSize; } public void setServerSocketSndBufSize(int serverSocketSndBufSize) { this.serverSocketSndBufSize = serverSocketSndBufSize; } public int getServerSocketRcvBufSize() { return serverSocketRcvBufSize; } public void setServerSocketRcvBufSize(int serverSocketRcvBufSize) { this.serverSocketRcvBufSize = serverSocketRcvBufSize; } public boolean isServerPooledByteBufAllocatorEnable() { return serverPooledByteBufAllocatorEnable; } public void setServerPooledByteBufAllocatorEnable(boolean serverPooledByteBufAllocatorEnable) { this.serverPooledByteBufAllocatorEnable = serverPooledByteBufAllocatorEnable; } public boolean isUseEpollNativeSelector() { return useEpollNativeSelector; } public void setUseEpollNativeSelector(boolean useEpollNativeSelector) { this.useEpollNativeSelector = useEpollNativeSelector; } @Override public Object clone() throws CloneNotSupportedException { return (NettyServerConfig) super.clone(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy