Class: Apollo::State

Inherits:
Object
  • Object
show all
Defined in:
lib/apollo/state.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, meta = {}) ⇒ State

Returns a new instance of State.



5
6
7
# File 'lib/apollo/state.rb', line 5

def initialize(name, meta = {})
  @name, @events, @meta, @set_names = name, Hash.new, meta, Set.new
end

Instance Attribute Details

#eventsObject

Returns the value of attribute events.



3
4
5
# File 'lib/apollo/state.rb', line 3

def events
  @events
end

#metaObject

Returns the value of attribute meta.



3
4
5
# File 'lib/apollo/state.rb', line 3

def meta
  @meta
end

#nameObject

Returns the value of attribute name.



3
4
5
# File 'lib/apollo/state.rb', line 3

def name
  @name
end

#on_entryObject

Returns the value of attribute on_entry.



3
4
5
# File 'lib/apollo/state.rb', line 3

def on_entry
  @on_entry
end

#on_exitObject

Returns the value of attribute on_exit.



3
4
5
# File 'lib/apollo/state.rb', line 3

def on_exit
  @on_exit
end

#set_namesObject

Returns the value of attribute set_names.



3
4
5
# File 'lib/apollo/state.rb', line 3

def set_names
  @set_names
end

Instance Method Details

#to_sObject



9
10
11
# File 'lib/apollo/state.rb', line 9

def to_s
  "#{name}"
end

#to_symObject



13
14
15
# File 'lib/apollo/state.rb', line 13

def to_sym
  name.to_sym
end