Interface Server

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

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

    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

    • getPort

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

      void start()
      Start this server.
    • close

      void close()
      Stop this server.
    • join

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