cleaner inflation interface
[dbsrgits/DBIx-Data-Store-old.git] / lib / DBIx / Data / Store / Command / Stream.pm
CommitLineData
65b76960 1package DBIx::Data::Store::Command::Stream;
2
3use Moose;
4use Method::Signatures::Simple;
5use DBIx::Data::Stream::STH;
6
3347c67e 7has 'column_order' => (is => 'ro', required => 1);
8
65b76960 9method execute {
65b76960 10 DBIx::Data::Stream::STH->new(
3347c67e 11 sth => $self->_new_active_sth, column_order => $self->column_order,
65b76960 12 );
13}
14
15with 'DBIx::Data::Store::Command';
16
17__PACKAGE__->meta->make_immutable;
18
191;