- java.lang.Object
-
- com.sun.jdi.connect.spi.TransportService.ListenKey
-
- Enclosing class:
- TransportService
public abstract static class TransportService.ListenKey extends Object
A listen key.A
TransportService
may listen on multiple, yet different, addresses at the same time. To uniquely identify eachlistener
a listen key is created each time thatstartListening
is called. The listen key is used in calls to theaccept
method to accept inbound connections to that listener. A listen key is valid until it is used as an argument tostopListening
to stop the transport service from listening on an address.
-
-
Constructor Summary
Constructors Constructor Description ListenKey()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract String
address()
Returns a string representation of the listen key.
-
-
-
Method Detail
-
address
public abstract String address()
Returns a string representation of the listen key.
-
-