Translations:Bluetooth/10/en

From ARIS
Revision as of 15:23, 17 January 2024 by FuzzyBot (talk | contribs) (Importing a new version from external source)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

States[edit]

<graphviz border='frame' format='svg' caption='ARIS Bluetooth states'> digraph StatesDiagram {

 node [shape=rectangle style=rounded fontsize="9pt"];
 edge [fontsize="7pt"];
 //----- Main graph
   // Nodes
   Begin [label="" shape="circle" style=filled fillcolor=black fixedsize=true width=0.2 height=0.2];
   Waiting [label="Waiting"];
   TransferingWorklist [label="Transfering Worklist"];
   ReceivingImages [label="Receiving Images"];
   ExecutingModel [label="Executing Model"];
   End [label="" shape="doublecircle" style=filled fillcolor="black" fixedsize=true width=0.2 height=0.2];
   // Edges
   Begin -> Waiting [label="Enable Bluetooth"]; // [constraint=false];
   Waiting -> TransferingWorklist  [label="Mobile request"];
   TransferingWorklist -> Waiting; //  [constraint=false];
   Waiting -> ReceivingImages  [label="Mobile request"];
   ReceivingImages -> Waiting; //  [constraint=false];
   ReceivingImages -> ExecutingModel  [label="Last image of a test"];
   ExecutingModel -> ReceivingImages; //  [constraint=false];
   Waiting -> End [label="Disable Bluetooth"]; // [constraint=false];