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 Summary
Modifier and Type Method Description voidexportMessage(String message)Sends an incoming server message, in text form, to an out-of-process broker implementation.default voidopenStreams()Opens output and input streams.voidstartMessageImport()Starts a listener for incoming messages, which will be forwarded to the server.
-
Method Details
-
openStreams
default void openStreams()Opens output and input streams. -
exportMessage
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.
-