WWW::Pipeline::Services

This package provides basic services for WWW::Pipeline applications, namely a param() method and a response() method.

Services

param

#set
$pipeline->param('name',$value);
$pipeline->param( name2 => $value2 )

#retrieve
$pipeline->param('name');

#delete
$pipeline->param('name',undef);

the param service provides a storage location for data to be shared between phases for the duration of the pipline.

response

#get
$pipeline->response();

#set
$pipeline->response($value);

the response service provides a storage location for text to be sent back to the requester until the application deems appropriate to send it.

Authors

Stephen Howard <stephen@thunkit.com>

License

This module may be distributed under the same terms as Perl itself.