switch to hashref based for command args and results
[dbsrgits/DBIx-Data-Store-old.git] / lib / DBIx / Data / Store / Command / Stream.pm
1 package DBIx::Data::Store::Command::Stream;
2
3 use Moose;
4 use Method::Signatures::Simple;
5 use DBIx::Data::Stream::STH;
6
7 has 'column_order' => (is => 'ro', required => 1);
8
9 method execute {
10   DBIx::Data::Stream::STH->new(
11     sth => $self->_new_active_sth, column_order => $self->column_order,
12   );
13 }
14
15 with 'DBIx::Data::Store::Command';
16
17 __PACKAGE__->meta->make_immutable;
18
19 1;