Package org.openspaces.admin.transport
Interface TransportDetails
- All Known Implementing Classes:
DefaultTransportDetails
public interface TransportDetails
Details (non changeable information) of a single transport.
- Author:
- kimchy
-
Method Summary
Modifier and TypeMethodDescriptionReturns 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.intReturns the maximum number of threads configured for the transport communication layer thread pool.intReturns the minimum number of threads configured for the transport communication layer thread pool.intgetPort()Returns the port the communication layer bounded on.booleanReturnstrueif 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()Returnstrueif ssl is enabled for the transport.
-