when you send a message to the shell process, you can flush all messages out by calling: c:flush().
C:\Windows\System32>erl Eshell V5.9 (abort with ^G) 1> self() ! josh. josh 2> self() ! me. me 3> self() ! you. you 4> flush(). Shell got josh Shell got me Shell got you ok 5>
In my thinking , this empties the mail box of the shell process. What is the equivalent way of emptying the mailbox of any erlang process ?
This function should flush all messages from mailbox (in any process where you call it):
flush() ->
receive
_ -> flush()
after
0 -> ok
end.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With