ActivePerl Documentation
|
NAMEPOE::Filter::Reference - POE Freeze/Thaw Protocol Abstraction
SUPPORTED PLATFORMS
SYNOPSIS
$filter = new POE::Filter::Reference();
$arrayref_of_perl_references =
$filter->get($arrayref_of_raw_chunks_from_driver);
$arrayref_of_serialized_perl_references =
$filter->put($arrayref_of_perl_references);
DESCRIPTIONThe ``put'' half of this filter freezes referenced Perl structures into serialized versions for sending. The ``get'' half of this filter thaws serialized Perl structures back into references. This provides a handy way to ship data between processes and systems. Serializers should recognize that POE::Filter::Reference is used to ship data between systems with different byte orders.
PUBLIC FILTER METHODS
SEE ALSOPOE::Filter; POE::Filter::HTTPD; POE::Filter::Line; POE::Filter::Stream
BUGSOh, probably some.
AUTHORS & COPYRIGHTSThe Reference filter was contributed by Arturn Bergman, with changes by Philip Gwyn. Please see the POE manpage for more information about authors and contributors.
|