MobileApp:User Guide: Difference between revisions
Jump to navigation
Jump to search
(Created page with "Category:MobileApp:User Guide <div style="float:right; margin: 0px 0px 0px 0px"> <graphviz border='frame' format='svg'> 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]; Registered [label="Registered"]; Processing [label="Processing"]; WithResults [label="WithResults"]...") |
No edit summary |
||
| Line 8: | Line 8: | ||
// Nodes | // Nodes | ||
Begin [label="" shape="circle" style=filled fillcolor=black fixedsize=true width=0.2 height=0.2]; | 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="ReceivingImages"]; | |||
End [label="" shape="doublecircle" style=filled fillcolor="black" fixedsize=true width=0.2 height=0.2]; | End [label="" shape="doublecircle" style=filled fillcolor="black" fixedsize=true width=0.2 height=0.2]; | ||
// Edges | // Edges | ||
Begin -> | Begin -> Waiting [constraint=false]; | ||
Waiting -> TransferingWorklist [label="Mobile request" constraint=false]; | |||
TransferingWorklist -> Waiting [label="Mobile request" constraint=false]; | |||
Waiting -> ReceivingImages [constraint=false]; | |||
ReceivingImages -> Waiting [constraint=false]; | |||
Waiting -> End [constraint=false]; | |||
{ rank=same; Begin Registered Processing WithResults Validated} | //{ rank=same; Begin Registered Processing WithResults Validated} | ||
{ rank=same; Cancelled End} | //{ rank=same; Cancelled End} | ||
} | } | ||
</graphviz> | </graphviz> | ||
</div> | </div> | ||