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
An endpoint that sends a message to another endpoint in a sequence blocks on that sequence's completion of that message before resuming operation. Eg.,
Sequence Example()
{
EndA.first{}
EndB.second{}
}
In this case, EndA will not proceed until it receives a message back from EndB that second has completed. This is despite the fact that EndA's further execution does not depend on any data from EndB. In these cases (ie, where data are not exchanged/modified), write a short-circuit that allows EndA to proceed.
The text was updated successfully, but these errors were encountered:
An endpoint that sends a message to another endpoint in a sequence blocks on that sequence's completion of that message before resuming operation. Eg.,
Sequence Example()
{
EndA.first{}
EndB.second{}
}
In this case, EndA will not proceed until it receives a message back from EndB that second has completed. This is despite the fact that EndA's further execution does not depend on any data from EndB. In these cases (ie, where data are not exchanged/modified), write a short-circuit that allows EndA to proceed.
The text was updated successfully, but these errors were encountered: