Ixsub: Difference between revisions

From zooid Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 5: Line 5:
   clientBrowser;
   clientBrowser;
   transitionServer;
   transitionServer;
   IXmapsServer;
   extantServer;


   client -> transitionServer [label =  "submits traceroute output"];
   client -> transitionServer [label =  "submits traceroute output"];
   transitionServer -> transitionServer [label = "parses output"];
   transitionServer -> transitionServer [label = "parses output"];
   transitionServer -> IXmapsServer [label = "submits parsed output"];
   transitionServer -> extantServer [label = "submits parsed output"];
  extantServer -> transitionServer [label = "sends traceroute id"];
   transitionServer -> client [label = "sends traceroute id"];
   transitionServer -> client [label = "sends traceroute id"];
   clientBrowser -->transitionServer [label = "requests map view via traceroute id"];
   clientBrowser --> transitionServer [label = "requests map view via traceroute id"];
  clientBrowser --> extantServer [label = "requests detail view"];


}
}

Revision as of 22:30, 4 March 2015

seqdiag {

 client;
 clientBrowser;
 transitionServer;
 extantServer;
 client -> transitionServer [label =  "submits traceroute output"];
 transitionServer -> transitionServer [label = "parses output"];
 transitionServer -> extantServer [label = "submits parsed output"];
 extantServer -> transitionServer [label = "sends traceroute id"];
 transitionServer -> client [label = "sends traceroute id"];
 clientBrowser --> transitionServer [label = "requests map view via traceroute id"];
 clientBrowser --> extantServer [label = "requests detail view"];

}