package Catalyst::Controller::DBIC::API::Request::Context; #ABSTRACT: Provides additional context to the Request use Moose::Role; use MooseX::Types::Moose(':all'); use MooseX::Types::Structured('Tuple'); use Catalyst::Controller::DBIC::API::Types(':all'); use namespace::autoclean; =attribute_public objects is: ro, isa ArrayRef[Tuple[Object,Maybe[HashRef]]], traits: ['Array'] This attribute stores the objects found/created at the object action. It handles the following methods: all_objects => 'elements' add_object => 'push' count_objects => 'count' has_objects => 'count' clear_objects => 'clear' =cut has objects => ( is => 'ro', isa => ArrayRef[ Tuple[ Object, Maybe[HashRef] ] ], traits => [ 'Array' ], default => sub { [] }, handles => { all_objects => 'elements', add_object => 'push', count_objects => 'count', has_objects => 'count', clear_objects => 'clear', }, ); =attribute_public current_result_set is: ro, isa: L Stores the current ResultSet derived from the initial L. =cut has current_result_set => ( is => 'ro', isa => ResultSet, writer => '_set_current_result_set', ); 1;