The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Data::Record::Serialize::Sink::array - append encoded data to an array.

VERSION

version 0.32

SYNOPSIS

    use Data::Record::Serialize;

    my $s = Data::Record::Serialize->new( sink => 'array', ?(output => \@output), ... );

    $s->send( \%record );

    # last encoded record is here
    $encoded = $s->output->[-1];

DESCRIPTION

Data::Record::Serialize::Sink::sink appends encoded data to an array.

It performs the Data::Record::Serialize::Role::Sink role.

ATTRIBUTES

output

  $array = $s->output;

The array into which the encoded record is stored. The last record sent is at

   $s->output->[-1]

CONSTRUCTOR OPTIONS

output => arrayref

Optional. Where to write the data. An arrayref is provided if not specified.

SUPPORT

Bugs

Please report any bugs or feature requests to bug-data-record-serialize@rt.cpan.org or through the web interface at: https://rt.cpan.org/Public/Dist/Display.html?Name=Data-Record-Serialize

Source

Source is available at

  https://gitlab.com/djerius/data-record-serialize

and may be cloned from

  https://gitlab.com/djerius/data-record-serialize.git

SEE ALSO

Please see those modules/websites for more information related to this module.

AUTHOR

Diab Jerius <djerius@cpan.org>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2017 by Smithsonian Astrophysical Observatory.

This is free software, licensed under:

  The GNU General Public License, Version 3, June 2007