module Concurrent::ErlangActor::FunctionShortcuts

Constrains shortcuts for methods in {Functions}.

Public Instance Methods

spawn(*args, **kwargs, &body) click to toggle source

Optionally included shortcut method for {Functions#spawn_actor} @return [Pid]

# File lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb, line 538
def spawn(*args, **kwargs, &body)
  spawn_actor(*args, **kwargs, &body)
end
terminate(pid, reason) click to toggle source

Optionally included shortcut method for {Functions#terminate_actor} @return [true]

# File lib/concurrent-ruby-edge/concurrent/edge/erlang_actor.rb, line 544
def terminate(pid, reason)
  terminate_actor(pid, reason)
end