class FsmEngine::Condition
Condition
contain a group of state and event event can be nil but state can't
Attributes
event[RW]
state[RW]
Public Class Methods
new(state, event)
click to toggle source
# File lib/fsm_engine/condition.rb, line 9 def initialize(state, event) @state = state @event = event end