Packages

p

com.workflowfm.pew

stateless

package stateless

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class CallRef(id: Int) extends Product with Serializable
  2. class ShutdownExecutorException extends Exception

    Exception throw when calling prohibited functions on a shutdown StatelessExecutor.

  3. abstract class StatelessExecutor[KeyT] extends ProcessExecutor[KeyT]

    Boots up necessary Workflow actors for a "stateless" (no RAM) workflow execution.

Value Members

  1. object CallRef extends Serializable
  2. 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.

Ungrouped