File: readme.txt

package info (click to toggle)
pyro5 5.15-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,112 kB
  • sloc: python: 14,291; makefile: 163; sh: 66; javascript: 62
file content (8 lines) | stat: -rw-r--r-- 450 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
It is possible to run a Pyro Daemon and Proxy over a user-supplied,
already connected socket, such as those produced by the socket.socketpair() function.

This makes it easy to communicate efficiently with a child process or background thread, using Pyro.


The pair-fork.py program uses fork() to run a background process (Windows doesn't support this)
The pair-thread.py program uses a background thread for the Pyro daemon (works on Windows too).