Module messaging_pattern

Source
Expand description

The messaging patterns with their custom StaticConfig Defines the messaging pattern used in a Service-based communication.

§Messaging Patterns

§Publish-Subscribe

See the Wikipedia Article: Publish-subscribe pattern. It uses uni-directional communication where n Publishers continuously send data to m Subscribers.

§Event

Enable processes to notify and wakeup other processes by sending events that are uniquely identified by a crate::port::event_id::EventId. Hereby, n Notifiers can notify m Listeners.

Note: This does not send or receive POSIX signals nor is it based on them.

Enums§

MessagingPattern
Identifies the kind of messaging pattern the Service will use.