akka.actor
Class FSM.StopEvent

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

public static class FSM.StopEvent
extends java.lang.Object
implements scala.Product, scala.Serializable

Case class representing the state of the FSM whithin the onTermination block.

See Also:
Serialized Form

Constructor Summary
FSM.StopEvent(FSM.Reason reason, S currentState, D stateData)
           
 
Method Summary
 S currentState()
           
 FSM.Reason reason()
           
 D stateData()
           
 
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.StopEvent

public FSM.StopEvent(FSM.Reason reason,
                     S currentState,
                     D stateData)
Method Detail

reason

public FSM.Reason reason()

currentState

public S currentState()

stateData

public D stateData()