Interface IpcAdapter


  • public interface IpcAdapter
    Implementations are intended to allow out-of-process broker implementation through an inter-process communication path. The obvious example is a pair of character streams such as pipes or FIFOs.
    Author:
    John Collins
    • Method Detail

      • openStreams

        default void openStreams()
        Opens output and input streams.
      • exportMessage

        void exportMessage​(String message)
        Sends an incoming server message, in text form, to an out-of-process broker implementation.
      • startMessageImport

        void startMessageImport()
        Starts a listener for incoming messages, which will be forwarded to the server.