DOKK / manpages / debian 12 / libmessage-passing-perl / Message::Passing::Role::CLIComponent.3pm.en
Message::Passing::Role::CLIComponent(3pm) User Contributed Perl Documentation Message::Passing::Role::CLIComponent(3pm)

Message::Passing::Role::CLIComponent - Package::Variant providing 'foo' and 'foo_options' attributes

    package My::Message::Passing::Script;
    use Moo;
    use MooX::Options;
    use Message::Passing::Role::CLIComponent;
    use Message::Passing::DSL;
    use namespace::clean -except => 'meta';
    with
        CLIComponent( name => 'input', default => 'STDIN' ),
        'Message::Passing::Role::Script';
    sub build_chain {
        my $self = shift;
        message_chain {
            input example => ( %{ $self->input_options }, output_to => 'test_out', class => $self->input, );
            output test_out => ( ... );
        };
    }
    __PACKAGE__->start unless caller;
    1;

A Package::Variant role producer, which is used to provide a pair of attributes for name/options as per the message-pass script.

The name of the main attribute. An additional attribute called "${name}_options" will also be added, which coerces a hashref from JSON.

A default value for the main attribute. If this is not supplied, than the attribute will be required.

This module exists due to the wonderful people at Suretec Systems Ltd. <http://www.suretecsystems.com/> who sponsored its development for its VoIP division called SureVoIP <http://www.surevoip.co.uk/> for use with the SureVoIP API - <http://www.surevoip.co.uk/support/wiki/api_documentation>

See Message::Passing.

2021-11-09 perl v5.32.1