NAME
Net::STOMP::OO - Object Oriented support for Net::STOMP
DESCRIPTION
This module provides Object Oriented support for Net::STOMP.
It implements dual-purpose accessors that can be used to get or set a given object attribute. For instance:
# get the frame body
$body = $frame->body();
# set the frame body
$frame->body("...some text...");
It also implements flexible object constructors. For instance:
$frame = Net::STOMP::Frame->new(
command => "MESSAGE",
body => "...some text...",
);
is equivalent to:
$frame = Net::STOMP::Frame->new();
$frame->command("MESSAGE");
$frame->body("...some text...");
AUTHOR
Lionel Cons http://cern.ch/lionel.cons