multiprocessing.Connection.poll()

poll([timeout])

Return whether there is any data available to be read.

If timeout is not specified then it will return immediately. If timeout is a number then this specifies the maximum time in seconds to block. If timeout is None then an infinite timeout is used.

Note that multiple connection objects may be polled at once by using multiprocessing.connection.wait().

doc_python
2016-10-07 17:37:37
Comments
Leave a Comment

Please login to continue.