org.powerscala.workflow

item

package item

Visibility
  1. Public
  2. All

Type Members

  1. case class Delay(time: Double) extends WorkflowItem with Product with Serializable

    Delays before completing for the time specified.

  2. class InvokeFunction extends WorkflowItem

    Invokes a function when called in the Workflow.

  3. case class Transition(time: Double)(handler: (Double) ⇒ Unit) extends WorkflowItem with Product with Serializable

    Transitions over the time specified calling handler as time progresses with the percentage complete between 0.0 and 1.0.

    Transitions over the time specified calling handler as time progresses with the percentage complete between 0.0 and 1.0.

  4. case class WaitFor(condition: () ⇒ Boolean) extends WorkflowItem with Product with Serializable

Value Members

  1. object InvokeFunction

Ungrouped