Let's say I have abstract actor with 2 states
Ready
and Busy
.
In Busy state I want to receive only particular type of messages e.g PauseJob
, CancelJob
, all other messages like StartNewJob
get stashed.
Question: if I set SetReceiveTimeout()
in Busy state, is it applied only to messages that I actually process in this state (PauseJob
, CancelJob
) or stashed messages are also considered?
Thanks in advance