FreeBSD Manual Pages
Net::AMQP::Value(3) User Contributed Perl Documentation Net::AMQP::Value(3) NAME Net::AMQP::Value - A collection of classes for typing AMQP data SYNOPSIS use Net::AMQP::Value; # ... somewhere, in an AMQP table: Net::AMQP::Value::String->new("1") # not an integer Net::AMQP::Value::Integer->new(" 1") # not a string Net::AMQP::Value::Timestamp->new(1) # not an integer Net::AMQP::Value::Boolean->new(1) # not an integer Net::AMQP::Value::true # shorthand for ...Boolean->new(1) Net::AMQP::Value::false # shorthand for ...Boolean->new(0) DESCRIPTION Generally in tables Net::AMQP tries to be smart, so e.g. a table value of '1' or '-1' is transmitted as an integer. When this intelligence becomes a problem, use these classes to type your data. For example, a table value of "Net::AMQP::Value::String-"new(1)> will be transmitted as the string "1". These classes also overload the basics like "", 0+, and bool so if you use them outside an AMQP table, they will probably Do The Right Thing. SEE ALSO Net::AMQP, Net::AMQP::Common perl v5.32.0 2020-08-08 Net::AMQP::Value(3)
NAME | SYNOPSIS | DESCRIPTION | SEE ALSO
Want to link to this manual page? Use this URL:
<https://www.freebsd.org/cgi/man.cgi?query=Net::AMQP::Value&sektion=3&manpath=FreeBSD+12.2-RELEASE+and+Ports>