module Concurrent::ErlangActor::Functions

A module containing entry functions to actors like spawn_actor, terminate_actor. It can be included in environments working with actors. @example

include Concurrent::ErlangActors::Functions
actor = spawn_actor :on_pool do
  receive { |data| process data }
end

@see FunctionShortcuts