Class methods added to classes which include Celluloid
# File lib/celluloid.rb, line 255 def ===(other) other.kind_of? self end
Configuration options for Actor#new
# File lib/celluloid.rb, line 243 def actor_options { :mailbox_class => mailbox_class, :mailbox_size => mailbox_size, :proxy_class => proxy_class, :task_class => task_class, :exit_handler => exit_handler, :exclusive_methods => defined?(@exclusive_methods) ? @exclusive_methods : nil, :receiver_block_executions => execute_block_on_receiver } end
Mark methods as running exclusively
# File lib/celluloid.rb, line 233 def exclusive(*methods) if methods.empty? @exclusive_methods = :all elsif !defined?(@exclusive_methods) || @exclusive_methods != :all @exclusive_methods ||= Set.new @exclusive_methods.merge methods.map(&:to_sym) end end
Create a new actor
# File lib/celluloid.rb, line 183 def new(*args, &block) proxy = Actor.new(allocate, actor_options).proxy proxy._send_(:initialize, *args, &block) proxy end
Create a new actor and link to the current one
# File lib/celluloid.rb, line 191 def new_link(*args, &block) raise NotActorError, "can't link outside actor context" unless Celluloid.actor? proxy = Actor.new(allocate, actor_options).proxy Actor.link(proxy) proxy._send_(:initialize, *args, &block) proxy end
Create a new pool of workers. Accepts the following options:
size: how many workers to create. Default is worker per CPU core
args: array of arguments to pass when creating a worker
# File lib/celluloid.rb, line 218 def pool(options = {}) PoolManager.new(self, options) end
Same as pool, but links to the pool manager
# File lib/celluloid.rb, line 223 def pool_link(options = {}) PoolManager.new_link(self, options) end
Run an actor in the foreground
# File lib/celluloid.rb, line 228 def run(*args, &block) Actor.join(new(*args, &block)) end
Create a supervisor which ensures an instance of an actor will restart an actor if it fails
# File lib/celluloid.rb, line 203 def supervise(*args, &block) Supervisor.supervise(self, *args, &block) end
Create a supervisor which ensures an instance of an actor will restart an actor if it fails, and keep the actor registered under a given name
# File lib/celluloid.rb, line 209 def supervise_as(name, *args, &block) Supervisor.supervise_as(name, self, *args, &block) end
Generated with the Darkfish Rdoc Generator 2.