Readonly
backReturns the original back-end socket.
Readonly
frontReturns the original front-end socket.
Temporarily suspends any proxy activity. Resume activity with resume().
Resumes proxy activity after suspending it with pause().
Starts the proxy loop in a worker thread and waits for its termination. Before starting, you must set any socket options, and connect or bind both front-end and back-end sockets.
On termination the front-end and back-end sockets will be closed automatically.
Resolved when the proxy has terminated.
Gracefully shuts down the proxy. The front-end and back-end sockets will be closed automatically. There might be a slight delay between terminating and the run() method resolving.
Proxy messages between two ØMQ sockets. The proxy connects a front-end socket to a back-end socket. Conceptually, data flows from front-end to back-end. Depending on the socket types, replies may flow in the opposite direction. The direction is conceptual only; the proxy is fully symmetric and there is no technical difference between front-end and back-end.
Review the ØMQ documentation for an overview of some example applications of a proxy.
Typeparam
F The front-end socket type.
Typeparam
B The back-end socket type.