Рассмотрим следующий код Erlang:
-module(testit).
-export([testit/0]).
testit() ->
Pid = spawn(fun testit_proc/0),
Pid ! final,
Pid ! one,
Pid ! two,
io:format("Root finished~n").
testit_proc() ->
receive
one -> io:format("One~n");
two -> io:format("Two~n")
end,
receive
one -> io:format("One~n");
two -> io:format("Two~n")
end,
receive
one -> io:format("One~n");
two -> io:format("Two~n");
final -> io:format("Final~n")
end,
io:format("Spawn finished~n").
Вывод:
Root finished
One
Two
Final
Spawn finished
Обработка сообщения final
по существу отложена до последнего блока приема в силу предыдущих шаблонов приема, не соответствующих этому сообщению.
Как вы это делаете с Haskell TChan?