The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

NAME

Net::WAMP::Role::Publisher - Publisher role for Net::WAMP

SYNOPSIS

package MyWAMP;
sub on_PUBLISHED { ... }
sub on_ERROR_PUBLISH { ... }
package main;
my $wamp = MyWAMP->new( on_send => sub { ... } );
$wamp->send_PUBLISH( {}, 'some.topic', \@args, \%args_kv );

DESCRIPTION

See the main Net::WAMP documentation for more background on how to use this class in your code.