You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Callbacks can be registered against promises that exist on a different durable promise store from the root promise. When this occurs, the task will exist on the leaf promise store, but will need to be sent (and populated with the root promise information) by the root promise store.
A general approach:
create task on leaf promise store when leaf promise is completed
check the root promise id, if it is a foreign promise enqueue using the http subsystem by calling a new endpoint on the foreign promise store
the new endpoint enqueues a task and will look roughly similar to the SenderSubmission
the system that ultimately receives the task will communicate with the leaf promise store
The text was updated successfully, but these errors were encountered:
Callbacks can be registered against promises that exist on a different durable promise store from the root promise. When this occurs, the task will exist on the leaf promise store, but will need to be sent (and populated with the root promise information) by the root promise store.
A general approach:
SenderSubmission
The text was updated successfully, but these errors were encountered: