File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
lib/concurrent/actor/behaviour Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ module Behaviour
4
4
5
5
# Any message reaching this behaviour is buffered. Only one message is is scheduled
6
6
# at any given time. Others are kept in buffer until another one can be scheduled.
7
- # This effective means that messages handled by behaviours before buffer have higher priority
8
- # and they can be processed before messages arriving into buffer. This allows to
9
- # process internal actor messages like (`:link`, `:supervise`) processed first.
7
+ # This effectively means that messages handled by behaviours before buffer have higher priority
8
+ # and they can be processed before messages arriving into buffer. This allows for
9
+ # the processing of internal actor messages like (`:link`, `:supervise`) first.
10
10
class Buffer < Abstract
11
11
def initialize ( core , subsequent )
12
12
super core , subsequent
You can’t perform that action at this time.
0 commit comments