multiprocessing.queues.JoinableQueue

Here are the examples of the python api multiprocessing.queues.JoinableQueue taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

Example 1

Project: PokemonGo-Bot-Desktop Source File: __init__.py
Function: joinablequeue
def JoinableQueue(maxsize=0):
    '''
    Returns a queue object
    '''
    from multiprocessing.queues import JoinableQueue
    return JoinableQueue(maxsize)