I’d like to ask for a clarification about the send pattern.
Is there a time coupling between the Send Client
and the Send Server
?
I mean, which one is correct?
-
the
Send Client
sends the messageC1
and immediatly returns to the task, and does not care what theSend Server
is doing (C1
request was already handled or not yet) -
the
Send Client
has to wait for thehandleSend(),C1
to comlpete (server backward dashed line) before returning (client ‘ok’ backward dashed line)?
Thanks