Interface RpcServer

All Superinterfaces:
AutoCloseable

public interface RpcServer extends AutoCloseable
Client server class for RPC.
See Also:
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static interface 
    Request processing context.
    static interface 
    Contract to process a request message and return a reply message.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Close the RPC server and its resources.
    void
    Pause the server to stop receiving messages.
    void
    Request to receive messages again.
  • Method Details

    • pause

      void pause()
      Pause the server to stop receiving messages.

      Outstanding requests will still be processed.

    • unpause

      void unpause()
      Request to receive messages again.
    • close

      void close()
      Close the RPC server and its resources.
      Specified by:
      close in interface AutoCloseable