diff options
author | Fred Drake <fdrake@acm.org> | 2001-12-05 21:37:50 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-12-05 21:37:50 (GMT) |
commit | d761662b66133a6be86798235b206a0097446bbf (patch) | |
tree | 2bd502461f6ae7627d2eea57f65f180557bbfb1c /Doc | |
parent | d331cb550221cbf0a5863968ed272fb2afc90202 (diff) | |
download | cpython-d761662b66133a6be86798235b206a0097446bbf.zip cpython-d761662b66133a6be86798235b206a0097446bbf.tar.gz cpython-d761662b66133a6be86798235b206a0097446bbf.tar.bz2 |
asyncore.loop() description contributed by Skip Montanaro.
This closes SF bug #489513.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libasyncore.tex | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Doc/lib/libasyncore.tex b/Doc/lib/libasyncore.tex index 0004365..8f8be98 100644 --- a/Doc/lib/libasyncore.tex +++ b/Doc/lib/libasyncore.tex @@ -56,6 +56,20 @@ network servers and clients a snap. \end{tableii} \end{classdesc} +\begin{funcdesc}{loop}{\optional{timeout\optional{, use_poll\optional{, + map}}}} + Enter a polling loop that only terminates after all open channels + have been closed. All arguments are optional. The \var{timeout} + argument sets the timeout parameter for the appropriate + \function{select()} or \function{poll()} call, measured in seconds; + the default is 30 seconds. The \var{use_poll} parameter, if true, + indicates that \function{poll()} should be used in preference to + \function{select()} (the default is false). The \var{map} parameter + is a dictionary that gives a list of channels to watch. As channels + are closed they are deleted from their map. If \var{map} is + omitted, a global map is used. +\end{funcdesc} + This set of user-level events is larger than the basics. The full set of methods that can be overridden in your subclass are: |