The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

ZMQ::CZMQ::Ctx - Wrapper Around zctx_t

SYNOPSIS

use ZMQ::CZMQ;
use ZMQ::Constants qw(ZMQ_REQ);

my $ctx = ZMQ::CZMQ::Ctx->new;
$ctx->destroy; # be careful!
$ctx->shadow;
$ctx->set_io_threads($io_threads);
$ctx->set_linger($linger);
$ctx->set_hwm($hwm);

my $sock = $ctx->socket(ZMQ_REQ);

METHODS

destroy

new

set_hwm

set_io_threads

set_linger

shadow

socket

socket_destroy

For now, internal use for ZMQ::CZMQ::Zctx.