class GeneralActor::Actor

This class represents the general implementation of an actor

Public Class Methods

new(_obj) click to toggle source

Initializes a new actor

# File lib/general_actor.rb, line 17
def initialize(_obj)
  raise "Just a template actor, use the implementations instead!"
end

Public Instance Methods

get_value_with_timeout(timeout) click to toggle source
# File lib/general_actor.rb, line 33
def get_value_with_timeout(timeout); end
kill() click to toggle source

Kill the actor

# File lib/general_actor.rb, line 23
def kill; end
value() click to toggle source

Get the value of the object stored in the actor

# File lib/general_actor.rb, line 27
def value; end
value=(value) click to toggle source

Set the value of the object stored in the actor

# File lib/general_actor.rb, line 31
def value=(value); end