Mozart.Task.Timer (Mozart v0.1.9)

Used to model a task waits a specified duration and automatically completes.

Example:

%ProcessModel{
    name: :call_timer_task,
    tasks: [
      %Timer{
        name: :wait_1_seconds,
        timer_duration: 10
      },
    ],
    initial_task: :wait_1_seconds
  }