akka.actor
Class FSM.Transition<S>

java.lang.Object
  extended by akka.actor.FSM.Transition<S>
All Implemented Interfaces:
java.io.Serializable, scala.Equals, scala.Product
Enclosing interface:
FSM<S,D>

public static class FSM.Transition<S>
extends java.lang.Object
implements scala.Product, scala.Serializable

Message type which is used to communicate transitions between states to all subscribed listeners (use FSM.SubscribeTransitionCallBack).

See Also:
Serialized Form

Constructor Summary
FSM.Transition(ActorRef fsmRef, S from, S to)
           
 
Method Summary
 S from()
           
 ActorRef fsmRef()
           
 S to()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface scala.Product
productArity, productElement, productIterator, productPrefix
 
Methods inherited from interface scala.Equals
canEqual, equals
 

Constructor Detail

FSM.Transition

public FSM.Transition(ActorRef fsmRef,
                      S from,
                      S to)
Method Detail

fsmRef

public ActorRef fsmRef()

from

public S from()

to

public S to()