Ixsub: Difference between revisions

From zooid Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 8: Line 8:


   clientTR -> transitionServer [label =  "submits traceroute output"];
   clientTR -> transitionServer [label =  "submits traceroute output"];
   transitionServer -> transitionServer [label = "parses output"];
   transitionServer -> transitionServer [label = "parses and stores output"];
   transitionServer -> extantServer [label = "submits parsed output"];
   transitionServer -> extantServer [label = "submits parsed output"];
   extantServer -> transitionServer [label = "sends traceroute id"];
   extantServer -> transitionServer [label = "sends traceroute id"];
   transitionServer -> client [label = "sends traceroute id"];
   transitionServer -> clientTR [label = "sends traceroute id"];
   clientBrowser --> transitionServer [label = "requests map view via traceroute id"];
  clientTR -> clientBrowser [label = "opens id'd view"];
   clientBrowser --> extantServer [label = "requests detail view"];
   clientBrowser --> transitionServer [label = "requests transition view via traceroute id"];
   clientBrowser --> extantServer [label = "requests extant view"];


}
}

Latest revision as of 02:03, 18 March 2015

seqdiag {

 clientTR;
 clientBrowser;
 transitionServer;
 extantServer;
 clientTR -> transitionServer [label =  "submits traceroute output"];
 transitionServer -> transitionServer [label = "parses and stores output"];
 transitionServer -> extantServer [label = "submits parsed output"];
 extantServer -> transitionServer [label = "sends traceroute id"];
 transitionServer -> clientTR [label = "sends traceroute id"];
 clientTR -> clientBrowser [label = "opens id'd view"];
 clientBrowser --> transitionServer [label = "requests transition view via traceroute id"];
 clientBrowser --> extantServer [label = "requests extant view"];

}