Interface ServerSocketChannelConfig

    • Method Detail

      • getBacklog

        int getBacklog()
        Gets the backlog value to specify when the channel binds to a local address.
      • setBacklog

        void setBacklog​(int backlog)
        Sets the backlog value to specify when the channel binds to a local address.
      • isReuseAddress

        boolean isReuseAddress()
        Gets the StandardSocketOptions.SO_REUSEADDR option.
      • setReuseAddress

        void setReuseAddress​(boolean reuseAddress)
        Sets the StandardSocketOptions.SO_REUSEADDR option.
      • getReceiveBufferSize

        int getReceiveBufferSize()
        Gets the StandardSocketOptions.SO_RCVBUF option.
      • setReceiveBufferSize

        void setReceiveBufferSize​(int receiveBufferSize)
        Sets the StandardSocketOptions.SO_RCVBUF option.
      • setPerformancePreferences

        void setPerformancePreferences​(int connectionTime,
                                       int latency,
                                       int bandwidth)
        Sets the performance preferences as specified in ServerSocket.setPerformancePreferences(int, int, int).