Interface ListenerEndpoint

All Superinterfaces:
AutoCloseable, 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

    Modifier and Type
    Method
    Description
    Returns the socket address of this endpoint.
    boolean
    Determines if this endpoint has been closed and is no longer listens for incoming connections.

    Methods inherited from interface java.io.Closeable

    close

    Methods inherited from interface org.apache.hc.core5.io.ModalCloseable

    close
  • Method Details

    • getAddress

      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:
      true if the endpoint has been closed, false otherwise.