feathers.messaging
| .. | |
|---|---|
| channels | |
| config | |
| errors | |
| events | |
| messages | |
| utils | |
| AbstractConsumer | The AbstractConsumer is the base class for both the Consumer and MultiTopicConsumer classes. You use those classes to receive pushed messages from the server. |
| AbstractProducer | The AbstractProducer is the base class for the Producer and MultiTopicConsumer classes. You use these classes to push messages to the server. |
| AuthenticationMessageResponder | Responder for processing channel authentication responses. |
| Channel | The Channel class is the base message channel class that all channels in the messaging system must extend. |
| ChannelSet | The ChannelSet is a set of Channels that are used to send messages to a target destination. The ChannelSet improves the quality of service on the client by hunting through its Channels to send messages in the face of network failures or individual Channel problems. |
| Consumer | A Consumer subscribes to a destination to receive messages. Consumers send subscribe and unsubscribe messages which generate a MessageAckEvent or MessageFaultEvent depending upon whether the operation was successful or not. Once subscribed, a Consumer dispatches a MessageEvent for each message it receives. Consumers provide the ability to filter messages using a selector. These selectors must be understood by the destination. |
| FlexClient | Singleton class that stores the global Id for this Player instance that is server assigned when the client makes its initial connection to the server. |
| MessageAgent | |
| MessageResponder | The MessageResponder class handles a successful result or fault from a message
destination. For each message that a Channel sends, the Channel creates a
MessageResponder to handle the result. Upon a response, the Channel will
invoke either the |
| Producer | A Producer sends messages to a destination. Producers dispatch a MessageAckEvent or MessageFaultEvent for each message they send depending upon whether the outbound message was sent and processed successfully or not. |