akka.actor
Class AbstractFSM$

java.lang.Object
  extended by akka.actor.AbstractFSM$

public class AbstractFSM$
extends java.lang.Object

Java API: compatible with lambda expressions

This is an EXPERIMENTAL feature and is subject to change until it has received more real world testing.


Field Summary
static AbstractFSM$ MODULE$
          Static reference to the singleton instance of this Scala object.
 
Constructor Summary
AbstractFSM$()
           
 
Method Summary
<S,D> scala.PartialFunction<S,D>
NullFunction()
          A partial function value which does not match anything and can be used to &ldquo;reset&rdquo; whenUnhandled and onTermination handlers.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

MODULE$

public static final AbstractFSM$ MODULE$
Static reference to the singleton instance of this Scala object.

Constructor Detail

AbstractFSM$

public AbstractFSM$()
Method Detail

NullFunction

public <S,D> scala.PartialFunction<S,D> NullFunction()
A partial function value which does not match anything and can be used to &ldquo;reset&rdquo; whenUnhandled and onTermination handlers.


 onTermination(FSM.NullFunction())
 

Returns:
(undocumented)