TransportService
public abstract static class TransportService.Capabilities extends Object
Constructor | Description |
---|---|
Capabilities() |
Constructor for subclasses to call. |
Modifier and Type | Method | Description |
---|---|---|
abstract boolean |
supportsAcceptTimeout() |
Tell whether or not this transport service supports a timeout while waiting for a target VM to connect. |
abstract boolean |
supportsAttachTimeout() |
Tell whether or not this transport service supports a timeout when attaching to a target VM. |
abstract boolean |
supportsHandshakeTimeout() |
Tells whether or not this transport service supports a timeout when handshaking with the target VM. |
abstract boolean |
supportsMultipleConnections() |
Tells whether or not this transport service can support multiple concurrent connections to a single address that it is listening on. |
public Capabilities()
public abstract boolean supportsMultipleConnections()
true
if, and only if, this transport service supports multiple connections.public abstract boolean supportsAttachTimeout()
true
if, and only if, this transport service supports attaching with a timeout.public abstract boolean supportsAcceptTimeout()
true
if, and only if, this transport service supports timeout while waiting for a target VM to connect.public abstract boolean supportsHandshakeTimeout()
true
if, and only if, this transport service supports a timeout while handshaking with the target VM.
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/jdk.jdi/com/sun/jdi/connect/spi/TransportService.Capabilities.html