File: Readme.txt

package info (click to toggle)
pyro5 5.16-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,124 kB
  • sloc: python: 14,328; makefile: 161; sh: 66; javascript: 62
file content (21 lines) | stat: -rw-r--r-- 594 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Create a chain of objects calling each other:
 
client   -->  A  -->  B

              ^       |
              |       v
              | 
              `-----  C


I.e. C calls A again.
A detects that the message went full circle and returns
the result (a 'trace' of the route) to the client.
(the detection checks if the name of the current server
is already in the current trace of the route, i.e.,
if it arrives for a second time on the same server,
it concludes that we're done).

First start the three servers (servA,B,C) and then run the client.
  
You need to have a nameserver running.