-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultiproc.erl
57 lines (49 loc) · 908 Bytes
/
multiproc.erl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
-module(multiproc).
-compile([export_all]).
sleep(T) ->
receive
after T -> ok
end.
flush() ->
receive
_ -> flush()
after 0 ->
ok
end.
send_lots_of_messages_to_self() ->
self() ! {15, high},
self() ! {13, high},
self() ! {7, low},
self() ! {1, low},
self() ! {9, low},
self() ! {17, high},
self() ! {19, high},
self() ! {2, low}.
importants_first() ->
importants(fun normal/0).
importants() ->
importants(none).
importants(After) ->
receive
{Priority, Message} when Priority > 10 ->
[Message | importants(After)]
after 0 ->
case is_function(After) of
true -> After();
false -> []
end
end.
normal() ->
receive
{_, Message} ->
[Message | normal()]
after 0 ->
[]
end.
optimized(Pid) ->
Ref = make_ref(),
Pid ! {self(), Ref, hello},
receive
{Pid, Ref, Msg} ->
io:format("~p~n", [Msg])
end.