scroll.internal.rpa

Type members

Classlikes

Companion object for the scroll.internal.rpa.RolePlayingAutomaton containing predefined states and data objects for messaging.

Companion object for the scroll.internal.rpa.RolePlayingAutomaton containing predefined states and data objects for messaging.

Companion
class
trait RolePlayingAutomaton extends Actor with LoggingFSM[RPAState, RPAData]

Use this trait to implement your own scroll.internal.compartment.impl.Compartment specific role playing automaton. Please read the documentation for akka.actor.FSM carefully, since the features from that are applicable for role playing automatons.

Use this trait to implement your own scroll.internal.compartment.impl.Compartment specific role playing automaton. Please read the documentation for akka.actor.FSM carefully, since the features from that are applicable for role playing automatons.

Remember to call run() when you want to start this automaton in your scroll.internal.compartment.impl.Compartment instance.

This automaton will always start in state scroll.internal.rpa.RolePlayingAutomaton.Start, so hook in there.

Final state is always scroll.internal.rpa.RolePlayingAutomaton.Stop, that will terminate the actor system for this akka.actor.FSM.

Use the factory method RolePlayingAutomaton.Use to gain an instance of your specific FSM, e.g.:

trait MyCompartment extends Compartment {
// ... some roles and interaction

// your specific RPA here
class MyRolePlayingAutomaton extends RolePlayingAutomaton {
// specific behavior here
when(Start) {
// ...
}

onTransition {
// ...
}

run()
}

Use[MyRolePlayingAutomaton] For this
}

// start everything
new MyCompartment {}

Some predefined event types for messaging are available in the companion object. You may want to define your own states and event types. Simply use a companion object for this as well.

Companion
object