Interface Server

All Known Implementing Classes:
DatagramServer, HttpServer, NettyServer, SaslSocketServer, SocketServer

public interface Server
A server listening on a port.
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    void
    Stop this server.
    int
    The port this server runs on.
    void
    Wait for this server to exit.
    void
    Start this server.
  • Method Details Link icon

    • getPort Link icon

      int getPort()
      The port this server runs on.
    • start Link icon

      void start()
      Start this server.
    • close Link icon

      void close()
      Stop this server.
    • join Link icon

      void join() throws InterruptedException
      Wait for this server to exit.
      Throws:
      InterruptedException