Merge pull request #17648 from nraychaudhuri/add_java_fsm_with_stash
Adding AbstractFSMWithStash Java API
This commit is contained in:
commit
37a14b98cc
1 changed files with 10 additions and 0 deletions
|
|
@ -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.
|
||||
*/
|
||||
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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue