package stateless
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- case class CallRef(id: Int) extends Product with Serializable
-
class
ShutdownExecutorException extends Exception
Exception throw when calling prohibited functions on a shutdown StatelessExecutor.
-
abstract
class
StatelessExecutor[KeyT] extends ProcessExecutor[KeyT]
Boots up necessary Workflow actors for a "stateless" (no RAM) workflow execution.
Value Members
- object CallRef extends Serializable
-
object
StatelessMessages
All state is saved in "message logs" or "channels" between the actors involved.
All state is saved in "message logs" or "channels" between the actors involved. When a new message is sent with the same indexes, the message is considered to update the value of any previous messages. This behaviour allows us to create "mutable" databases from the persistent message logs, which in turn offer reliability and scalability.