1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
package Message::Passing::AMQP::Role::HasAConnection;
use Moo::Role;
use Types::Standard qw( Bool Str );
use namespace::autoclean;
with qw/
Message::Passing::Role::HasAConnection
Message::Passing::Role::HasHostnameAndPort
Message::Passing::Role::HasUsernameAndPassword
/;
sub _default_port { 5672 }
has tls => (
is => 'ro',
isa => Bool,
default => sub { 0 },
);
has vhost => (
is => 'ro',
isa => Str,
default => sub { '/' },
);
has verbose => (
is => 'ro',
isa => Bool,
default => sub { 0 },
);
sub _connection_manager_class { 'Message::Passing::AMQP::ConnectionManager' }
sub _connection_manager_attributes { [qw/ username password hostname port tls vhost verbose /] }
1;
=head1 NAME
Message::Passing::AMQP::Role::HasAConnection - Implements the Message::Passing::Role::HasAConnection interface..
=head1 ATTRIBUTES
=head2 tls
Gets passed to L<Message::Passing::AMQP::ConnectionManager>, defaults to false.
=head2 vhost
Gets passed to L<Message::Passing::AMQP::ConnectionManager>, defaults to '/'.
=head2 verbose
Gets passed to L<Message::Passing::AMQP::ConnectionManager>, defaults to false.
=head1 AUTHOR, COPYRIGHT AND LICENSE
See L<Message::Passing::AMQP>.
=cut
|