Idea:
- you can subscribe to a Component A calling its
register_subscription method
- For each published message (via data protocol), this Component A will call
add_subscription_message (TBD) on all components which registered themselves previously. "Data" is the content of the data message. Conversation_id is the same. If a component is not reachable, it is removed from the list of subscribers.
subscription_message will call handle_subscription_message with an artificial Data message.
This allows to subscribe to events on other computers without creating a dedicated data protocol network.
Idea:
register_subscriptionmethodadd_subscription_message(TBD) on all components which registered themselves previously. "Data" is the content of the data message. Conversation_id is the same. If a component is not reachable, it is removed from the list of subscribers.subscription_messagewill callhandle_subscription_messagewith an artificial Data message.This allows to subscribe to events on other computers without creating a dedicated data protocol network.