Class TransportService.Capabilities

java.lang.Object
com.sun.jdi.connect.spi.TransportService.Capabilities
Enclosing class:
TransportService

public abstract static class TransportService.Capabilities extends Object
The transport service capabilities.
Since:
1.5
  • Constructor Summary Link icon

    Constructors
    Constructor
    Description
    Constructor for subclasses to call.
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    abstract boolean
    Tell whether or not this transport service supports a timeout while waiting for a target VM to connect.
    abstract boolean
    Tell whether or not this transport service supports a timeout when attaching to a target VM.
    abstract boolean
    Tells whether or not this transport service supports a timeout when handshaking with the target VM.
    abstract boolean
    Tells whether or not this transport service can support multiple concurrent connections to a single address that it is listening on.
  • Constructor Details Link icon

    • Capabilities Link icon

      public Capabilities()
      Constructor for subclasses to call.
  • Method Details Link icon

    • supportsMultipleConnections Link icon

      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:
      true if, and only if, this transport service supports multiple connections.
    • supportsAttachTimeout Link icon

      public abstract boolean supportsAttachTimeout()
      Tell whether or not this transport service supports a timeout when attaching to a target VM.
      Returns:
      true if, and only if, this transport service supports attaching with a timeout.
      See Also:
    • supportsAcceptTimeout Link icon

      public abstract boolean supportsAcceptTimeout()
      Tell whether or not this transport service supports a timeout while waiting for a target VM to connect.
      Returns:
      true if, and only if, this transport service supports timeout while waiting for a target VM to connect.
      See Also:
    • supportsHandshakeTimeout Link icon

      public abstract boolean supportsHandshakeTimeout()
      Tells whether or not this transport service supports a timeout when handshaking with the target VM.
      Returns:
      true if, and only if, this transport service supports a timeout while handshaking with the target VM.
      See Also: