
POEx::ZMQ3::Context - A ZeroMQ context singleton

## new() returns (lazy build) singleton: my $zsock = zmq_socket( POEx::ZMQ3::Context->new, $type ); ## ... if you fork later: POEx::ZMQ3::Context->reset;

A ZeroMQ context should be shared amongst pieces of a single process.
This is the singleton used internally by POEx::ZMQ3 bits.
Forked children should call POEx::ZMQ3::Context->reset before issuing new socket operations.
Calling POEx::ZMQ::Context->term will force a context termination. This may block (and is rarely needed); see the man page for zmq_ctx_destroy.

Jon Portnoy <avenj@cobaltirc.org>