module Concurrent::ErlangActor::FunctionShortcuts
Constrains shortcuts for methods in {Functions}.
Public Instance Methods
Source
# File lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb, line 538 def spawn(*args, **kwargs, &body) spawn_actor(*args, **kwargs, &body) end
Optionally included shortcut method for {Functions#spawn_actor} @return [Pid]
Source
# File lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb, line 544 def terminate(pid, reason) terminate_actor(pid, reason) end
Optionally included shortcut method for {Functions#terminate_actor} @return [true]