view OrthancServer/Resources/ImplementationNotes/JobsEngineStates.dot @ 5737:2fe77dfe0466

rewrote FileSystemStorage::Create knowing that we should not check the return value of boost::file_system::create_directories and that it throws on errors we were detecting manually
author Alain Mazy <am@orthanc.team>
date Thu, 01 Aug 2024 19:44:48 +0200
parents d25f4c0fa160
children
line wrap: on
line source

// dot -Tpdf JobsEngineStates.dot -o JobsEngineStates.pdf

digraph G
{
  rankdir="LR";
  init [shape=point];
  failure, success [shape=doublecircle];

  // Internal transitions
  init -> pending;
  pending -> running;
  running -> success;
  running -> failure;
  running -> retry;
  retry -> pending [label="timeout"];

  // External actions
  failure -> pending  [label="Resubmit()" fontcolor="red"];
  paused -> pending  [label="Resume()" fontcolor="red"];
  pending -> paused  [label="Pause()" fontcolor="red"];
  retry -> paused  [label="Pause()" fontcolor="red"];
  running -> paused  [label="Pause()" fontcolor="red"];

  paused -> failure  [label="Cancel()" fontcolor="red"];
  pending -> failure  [label="Cancel()" fontcolor="red"];
  retry -> failure  [label="Cancel()" fontcolor="red"];
  running -> failure  [label="Cancel()" fontcolor="red"];
}