Merge pull request #17648 from nraychaudhuri/add_java_fsm_with_stash

Adding AbstractFSMWithStash Java API
This commit is contained in:
Roland Kuhn 2015-06-19 12:10:35 +02:00
commit 37a14b98cc

View file

@ -1183,3 +1183,13 @@ abstract class AbstractFSM[S, D] extends FSM[S, D] {
* This is an EXPERIMENTAL feature and is subject to change until it has received more real world testing. * This is an EXPERIMENTAL feature and is subject to change until it has received more real world testing.
*/ */
abstract class AbstractLoggingFSM[S, D] extends AbstractFSM[S, D] with LoggingFSM[S, D] abstract class AbstractLoggingFSM[S, D] extends AbstractFSM[S, D] with LoggingFSM[S, D]
/**
* Java API: compatible with lambda expressions
*
* Finite State Machine actor abstract base class with Stash support.
*
* This is an EXPERIMENTAL feature and is subject to change until it has received more real world testing.
*/
abstract class AbstractFSMWithStash[S, D] extends AbstractFSM[S, D] with Stash