Interface TransportDetails

All Known Implementing Classes:
DefaultTransportDetails

public interface TransportDetails
Details (non changeable information) of a single transport.
Author:
kimchy
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the host name or address the communication layer bounded on.
    Returns the local host address of the transport.
    Returns the local host address of the transport.
    int
    Returns the maximum number of threads configured for the transport communication layer thread pool.
    int
    Returns the minimum number of threads configured for the transport communication layer thread pool.
    int
    Returns the port the communication layer bounded on.
    boolean
    Returns true if ssl is enabled for the transport.
  • Method Details

    • getHostAddress

      String getHostAddress()
      Returns the local host address of the transport.
      See Also:
    • getHostName

      String getHostName()
      Returns the local host address of the transport.
      See Also:
    • getBindHost

      String getBindHost()
      Returns the host name or address the communication layer bounded on.
    • getPort

      int getPort()
      Returns the port the communication layer bounded on.
    • getMinThreads

      int getMinThreads()
      Returns the minimum number of threads configured for the transport communication layer thread pool.
    • getMaxThreads

      int getMaxThreads()
      Returns the maximum number of threads configured for the transport communication layer thread pool.
    • isSslEnabled

      boolean isSslEnabled()
      Returns true if ssl is enabled for the transport.