logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Message::Passing::Role::HasAConnection - Role for components which have a connection

Attributes

connection_manager
       Holds the connection manger returned by the "_build_connection_manager" method.

Description

       Provides a standard ->connection_manager attribute for inputs or outputs which need to make a network
       connection before they can send or receive messages.

       The connection manager object is assumed to have the "->subscribe_to_connect" method (from
       Message::Passing::Role::Connection).

Name

       Message::Passing::Role::HasAConnection - Role for components which have a connection

Optional Methods

disconnected($client)
       The client received an error or otherwise disconnected.

Required Methods

_build_connection_manager
       Will be called at BUILD (i.e. object construction) time, should return a connection manager object (i.e.
       an object that "->subscribe_to_connect" can be called on).

   connected($client)
       Called by the connection manager when a connection is made.

       Usually used to do things like subscribe to queues..

See Also

       Message::Passing::Role::ConenctionManager.

Sponsorship

       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>

Wrapped Methods

BUILD
       Is wrapped to build the connection manager object.

See Also