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
Publisher
s continuously send data to m
Subscriber
s.
§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
Notifier
s can notify m
Listener
s.
Note: This does not send or receive POSIX signals nor is it based on them.
Enums§
- Messaging
Pattern - Identifies the kind of messaging pattern the
Service
will use.