POE::Filter::Stomp - Perl extension for the POE Environment


POE-Filter-Stomp documentation  | view source Contained in the POE-Filter-Stomp distribution.

Index


NAME

Top

POE::Filter::Stomp - Perl extension for the POE Environment

SYNOPSIS

Top

  use POE::Filter::Stomp;

  For a server

  POE::Component::Server::TCP->new(
      ...
      Filter => 'POE::Filter::Stomp',
      ...
  );

  For a client

  POE::Component::Client::TCP->new(
      ...
      Filter => 'POE::Filter::Stomp',
      ...
  );

DESCRIPTION

Top

This module is a filter for the POE environment. It will translate the input buffer into Net::Stomp::Frame objects and serialize the output buffer from said objects. For more information an the STOMP protocol, please refer to: http://stomp.codehaus.org/Protocol .

EXPORT

Top

None by default.

SEE ALSO

Top

See the documentation for POE::Filter for usage.

BUGS

Top

Quite possibly. It works for me, maybe it will work for you.

AUTHOR

Top

Kevin L. Esteb, <kesteb@wsipc.org>

COPYRIGHT AND LICENSE

Top


POE-Filter-Stomp documentation  | view source Contained in the POE-Filter-Stomp distribution.