Packages

package worklist

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. case class FlowWorklistItem(env: FlowEnvelope, outboundId: String) extends WorklistItem with Product with Serializable
  2. case class Worklist(id: String = UUID.randomUUID().toString(), items: Seq[WorklistItem]) extends Product with Serializable
  3. sealed trait WorklistEvent extends AnyRef
  4. trait WorklistItem extends AnyRef
  5. final case class WorklistStarted(worklist: Worklist, timeout: FiniteDuration = 100.millis, state: WorklistState = WorklistStateStarted) extends WorklistEvent with Product with Serializable
  6. sealed trait WorklistState extends AnyRef
  7. final case class WorklistStepCompleted(worklist: Worklist, state: WorklistState = WorklistStateCompleted) extends WorklistEvent with Product with Serializable
  8. final case class WorklistTerminated(worklist: Worklist, state: WorklistState, reason: Option[Throwable]) extends WorklistEvent with Product with Serializable

Value Members

  1. object WorklistManager
  2. object WorklistState
  3. case object WorklistStateCompleted extends WorklistState with Product with Serializable
  4. case object WorklistStateFailed extends WorklistState with Product with Serializable
  5. case object WorklistStateStarted extends WorklistState with Product with Serializable
  6. case object WorklistStateTimeout extends WorklistState with Product with Serializable

Ungrouped