Package org.apache.hc.core5.reactor
Interface ListenerEndpoint
-
- All Superinterfaces:
java.lang.AutoCloseable,java.io.Closeable,ModalCloseable
- All Known Implementing Classes:
ListenerEndpointImpl
public interface ListenerEndpoint extends ModalCloseable
ListenerEndpoint interface represents an endpoint used by an I/O reactor to listen for incoming connection from remote clients.- Since:
- 4.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.net.SocketAddressgetAddress()Returns the socket address of this endpoint.booleanisClosed()Determines if this endpoint has been closed and is no longer listens for incoming connections.-
Methods inherited from interface org.apache.hc.core5.io.ModalCloseable
close
-
-
-
-
Method Detail
-
getAddress
java.net.SocketAddress getAddress()
Returns the socket address of this endpoint.- Returns:
- socket address.
-
isClosed
boolean isClosed()
Determines if this endpoint has been closed and is no longer listens for incoming connections.- Returns:
trueif the endpoint has been closed,falseotherwise.
-
-