We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c9e37a commit c76c050Copy full SHA for c76c050
lib/concurrent/actor_ref.rb
@@ -4,21 +4,14 @@ module Concurrent
4
5
module ActorRef
6
7
- def running?
8
- true
9
- end
10
-
11
- def shutdown?
12
- false
13
14
15
- def post(*msg, &block)
16
- raise NotImplementedError
17
18
19
- def post!(*msg)
20
21
+ #NOTE: Required API methods
+ # Must be implemented in all subclasses
+ #def post(*msg, &block)
+ #def post!(*msg)
+ #def running?
+ #def shutdown?
+ #def shutdown
+ #def join(timeout = nil)
22
23
def <<(message)
24
post(*message)
0 commit comments