Class ProtocolServerConfigurationBuilder<T extends ProtocolServerConfiguration,​S extends ProtocolServerConfigurationChildBuilder<T,​S>>

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      S adminOperationsHandler​(org.infinispan.server.core.admin.AdminOperationsHandler handler)
      Indicates the AdminOperationsHandler which will be used to handle admin operations
      S defaultCacheName​(String defaultCacheName)
      Specifies the cache to use as a default cache for the protocol
      String host()  
      S host​(String host)
      Specifies the host or IP address on which this server will listen
      S idleTimeout​(int idleTimeout)
      Specifies the maximum time that connections from client will be kept open without activity
      S ioThreads​(int ioThreads)
      Sets the number of I/O threads
      String name()  
      S name​(String name)
      Specifies a custom name for this server in order to easily distinguish it from other servers, e.g.
      int port()  
      S port​(int port)
      Specifies the port on which this server will listen
      Builder<?> read​(T template)
      Reads the configuration from an already created configuration bean into this builder.
      S recvBufSize​(int recvBufSize)
      Sets the size of the receive buffer
      S sendBufSize​(int sendBufSize)
      Sets the size of the send buffer
      S socketBinding​(String name)
      Indicates the name of socket binding which will be used
      SslConfigurationBuilder ssl()
      Configures SSL
      S startTransport​(boolean startTransport)
      Indicates whether transport implementation should or should not be started.
      S tcpKeepAlive​(boolean tcpKeepAlive)
      Affects TCP KEEPALIVE on the TCP stack.
      S tcpNoDelay​(boolean tcpNoDelay)
      Affects TCP NODELAY on the TCP stack.
      void validate()
      Validate the data in this builder before building the configuration bean
      S workerThreads​(int workerThreads)
      Sets the number of worker threads
      • Methods inherited from interface org.infinispan.commons.configuration.Builder

        create
      • Methods inherited from interface org.infinispan.commons.configuration.Self

        self