Package org.apache.http.nio.reactor
Interface ListenerEndpoint
-
- All Known Implementing Classes:
ListenerEndpointImpl
public interface ListenerEndpointListenerEndpoint 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 voidclose()Closes this endpoint.SocketAddressgetAddress()Returns the socket address of this endpoint.IOExceptiongetException()Returns an instance ofIOExceptionthrown during initialization of this endpoint ornull, if initialization was successful.booleanisClosed()Determines if this endpoint has been closed and is no longer listens for incoming connections.voidwaitFor()Waits for completion of initialization process of this endpoint.
-
-
-
Method Detail
-
getAddress
SocketAddress getAddress()
Returns the socket address of this endpoint.- Returns:
- socket address.
-
getException
IOException getException()
Returns an instance ofIOExceptionthrown during initialization of this endpoint ornull, if initialization was successful.- Returns:
- I/O exception object or
null.
-
waitFor
void waitFor() throws InterruptedExceptionWaits for completion of initialization process of this endpoint.- Throws:
InterruptedException- in case the initialization process was interrupted.
-
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.
-
close
void close()
Closes this endpoint. The endpoint will stop accepting incoming connection.
-
-