Should gear consider reply
message as outgoing
message?
#3787
grishasobol
started this conversation in
Polls
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As you know we have two runtime constants, which supposed to limit max amount of outgoing messages during one message and max amount of bytes in outgoing messages during one execution.
The question is whether we should consider reply as outgoing message and so take it in account in this limits.
Some differences for example if take in account reply:
handle
,init
messages we must subtract one message from OutgoingLimit counter always, causehandle
messages always sent one reply, no matter what is result of execution.handle_reply
,handle_signal
messages should not subtract, becausehandle_reply
andhandle_signal
does not send reply, so in this cases user can send one additional message in comparison withhandle
andinit
.see also #3784
5 votes ·
Beta Was this translation helpful? Give feedback.
All reactions