Class SocketConfiguration

java.lang.Object
org.apache.nifi.io.socket.SocketConfiguration

public final class SocketConfiguration extends Object
  • Field Details

    • socketTimeout

      private Integer socketTimeout
    • receiveBufferSize

      private Integer receiveBufferSize
    • sendBufferSize

      private Integer sendBufferSize
    • reuseAddress

      private Boolean reuseAddress
    • keepAlive

      private Boolean keepAlive
    • oobInline

      private Boolean oobInline
    • tcpNoDelay

      private Boolean tcpNoDelay
    • trafficClass

      private Integer trafficClass
    • sslContext

      private SSLContext sslContext
  • Constructor Details

    • SocketConfiguration

      public SocketConfiguration()
  • Method Details

    • getSslContext

      public SSLContext getSslContext()
    • setSslContext

      public void setSslContext(SSLContext sslContext)
    • getSocketTimeout

      public Integer getSocketTimeout()
    • setSocketTimeout

      public void setSocketTimeout(Integer socketTimeout)
    • getReuseAddress

      public Boolean getReuseAddress()
    • setReuseAddress

      public void setReuseAddress(Boolean reuseAddress)
    • getKeepAlive

      public Boolean getKeepAlive()
    • setKeepAlive

      public void setKeepAlive(Boolean keepAlive)
    • getOobInline

      public Boolean getOobInline()
    • setOobInline

      public void setOobInline(Boolean oobInline)
    • getReceiveBufferSize

      public Integer getReceiveBufferSize()
    • setReceiveBufferSize

      public void setReceiveBufferSize(Integer receiveBufferSize)
    • getSendBufferSize

      public Integer getSendBufferSize()
    • setSendBufferSize

      public void setSendBufferSize(Integer sendBufferSize)
    • getTcpNoDelay

      public Boolean getTcpNoDelay()
    • setTcpNoDelay

      public void setTcpNoDelay(Boolean tcpNoDelay)
    • getTrafficClass

      public Integer getTrafficClass()
    • setTrafficClass

      public void setTrafficClass(Integer trafficClass)