threading.Event

class threading.Event Class implementing event objects. An event manages a flag that can be set to true with the set()

2016-10-07 17:44:34
threading.Thread.join()

join(timeout=None) Wait until the thread terminates. This blocks the calling thread until the thread whose join()

2016-10-07 17:44:38
multiprocessing.managers.BaseProxy.

_getvalue() Return a copy of the referent. If the referent is unpicklable then this will raise

2016-10-07 17:37:46
multiprocessing.Queue.qsize()

qsize() Return the approximate size of the queue. Because of multithreading/multiprocessing semantics, this number is not reliable

2016-10-07 17:38:01
multiprocessing.Queue.put()

put(obj[, block[, timeout]]) Put obj into the queue. If the optional argument block is True (the default)

2016-10-07 17:38:01
concurrent.futures.Future.set_running_or_notify_cancel()

set_running_or_notify_cancel() This method should only be called by Executor implementations before executing the

2016-10-07 17:29:08
multiprocessing.managers.SyncManager.Queue()

Queue([maxsize]) Create a shared

2016-10-07 17:37:49
multiprocessing.managers.BaseManager.shutdown()

shutdown() Stop the process used by the manager. This is only available if start() has been used to start the server

2016-10-07 17:37:44
threading.Timer

class threading.Timer(interval, function, args=None, kwargs=None) Create a timer that will run function with arguments

2016-10-07 17:44:39
concurrent.futures.Executor

class concurrent.futures.Executor An abstract class that provides methods to execute calls asynchronously. It should not be

2016-10-07 17:29:06