NAME

AMF::Connection::OutputStream - A simple pure perl implementation of an output binary stream

SYNOPSIS

  # ...

  my $stream = new AMF::Connection::OutputStream;
  my $stream_with_options = new AMF::Connection::OutputStream('prefer_number, json_boolean');
  $stream->writeInt(1);
  $stream->writeLong(1);

  # ..

DESCRIPTION

The AMF::Connection::OutputStream class is a simple pure perl implementation of an output binary stream.

OPTIONS

See Storable::AMF0 documentation.

SEE ALSO

Storable::AMF0, Data::AMF::IO, AMF::Perl::IO::OutputStream

AUTHOR

Alberto Attilio Reggiori, <areggiori at cpan dot org>

COPYRIGHT AND LICENSE

Copyright (C) 2010-2011 by Alberto Attilio Reggiori

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.0 or, at your option, any later version of Perl 5 you may have available.