The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

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

SYNOPSIS

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

DESCRIPTION

A ZeroMQ context should be shared amongst pieces of a single process.

This is the singleton used internally by POEx::ZMQ3 bits; you can use it to retrieve the current context object if you are adding independently-managed ZMQ::LibZMQ3 sockets to the currently-running process.

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.

AUTHOR

Jon Portnoy <avenj@cobaltirc.org>