java.lang.Object
com.sun.jdi.connect.spi.TransportService.Capabilities
- Enclosing class:
 TransportService
The transport service capabilities.
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionabstract booleanTell whether or not this transport service supports a timeout while waiting for a target VM to connect.abstract booleanTell whether or not this transport service supports a timeout when attaching to a target VM.abstract booleanTells whether or not this transport service supports a timeout when handshaking with the target VM.abstract booleanTells whether or not this transport service can support multiple concurrent connections to a single address that it is listening on. 
- 
Constructor Details
- 
Capabilities
public Capabilities()Constructor for subclasses to call. 
 - 
 - 
Method Details
- 
supportsMultipleConnections
public abstract boolean supportsMultipleConnections()Tells whether or not this transport service can support multiple concurrent connections to a single address that it is listening on.- Returns:
 trueif, and only if, this transport service supports multiple connections.
 - 
supportsAttachTimeout
public abstract boolean supportsAttachTimeout()Tell whether or not this transport service supports a timeout when attaching to a target VM.- Returns:
 trueif, and only if, this transport service supports attaching with a timeout.- See Also:
 
 - 
supportsAcceptTimeout
public abstract boolean supportsAcceptTimeout()Tell whether or not this transport service supports a timeout while waiting for a target VM to connect.- Returns:
 trueif, and only if, this transport service supports timeout while waiting for a target VM to connect.- See Also:
 
 - 
supportsHandshakeTimeout
public abstract boolean supportsHandshakeTimeout()Tells whether or not this transport service supports a timeout when handshaking with the target VM.- Returns:
 trueif, and only if, this transport service supports a timeout while handshaking with the target VM.- See Also:
 
 
 -