Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
42d87352
Commit
42d87352
authored
Jun 19, 2017
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc tweaks [skip ci]
parent
4d85f51e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
12 deletions
+24
-12
doc/gevent.queue.rst
doc/gevent.queue.rst
+8
-5
doc/intro.rst
doc/intro.rst
+2
-1
src/gevent/queue.py
src/gevent/queue.py
+14
-6
No files found.
doc/gevent.queue.rst
View file @
42d87352
:mod:`gevent.queue` -- Synchronized queues
==========================================
============================================
:mod:`gevent.queue` -- Synchronized queues
============================================
.. automodule:: gevent.queue
:members:
:undoc-members:
:members:
:undoc-members:
.. exception:: Full
...
...
@@ -13,6 +14,9 @@
An alias for :class:`Queue.Empty`
Examples
========
Example of how to wait for enqueued tasks to be completed::
def worker():
...
...
@@ -31,4 +35,3 @@ Example of how to wait for enqueued tasks to be completed::
q.put(item)
q.join() # block until all tasks are done
doc/intro.rst
View file @
42d87352
...
...
@@ -339,6 +339,7 @@ killing will remain blocked forever).
`This document
<http://docs.oracle.com/javase/8/docs/technotes/guides/concurrency/threadPrimitiveDeprecation.html>`_
describes a similar situation for threads.
Timeouts
========
...
...
@@ -364,7 +365,7 @@ add timeouts to arbitrary sections of (cooperative, yielding) code.
Further reading
==============
==============
=
To limit concurrency, use the :class:`gevent.pool.Pool` class (see `example: dns_mass_resolve.py`_).
...
...
src/gevent/queue.py
View file @
42d87352
# Copyright (c) 2009-2012 Denis Bilenko. See LICENSE for details.
"""Synchronized queues.
"""
Synchronized queues.
The :mod:`gevent.queue` module implements multi-producer, multi-consumer queues
that work across greenlets, with the API similar to the classes found in the
standard :mod:`Queue` and :class:`multiprocessing <multiprocessing.Queue>` modules.
The classes in this module implement iterator protocol. Iterating over queue
means repeatedly calling :meth:`get <Queue.get>` until :meth:`get <Queue.get>` returns ``StopIteration``.
The classes in this module implement the iterator protocol. Iterating
over a queue means repeatedly calling :meth:`get <Queue.get>` until
:meth:`get <Queue.get>` returns ``StopIteration`` (specifically that
class, not an instance or subclass).
>>> queue = gevent.queue.Queue()
>>> queue.put(1)
...
...
@@ -58,11 +61,14 @@ class Queue(object):
If *maxsize* is less than or equal to zero or ``None``, the queue
size is infinite.
Queues have a ``len`` equal to the number of items in them (the :meth:`qsize`),
but in a boolean context they are always True.
.. versionchanged:: 1.1b3
Queues now support :func:`len`; it behaves the same as :meth:`qsize`.
.. versionchanged:: 1.1b3
Multiple greenlets that block on a call to :meth:`put` for a full queue
will now be
woken up
to put their items into the queue in the order in which
will now be
awakened
to put their items into the queue in the order in which
they arrived. Likewise, multiple greenlets that block on a call to :meth:`get` for
an empty queue will now receive items in the order in which they blocked. An
implementation quirk under CPython *usually* ensured this was roughly the case
...
...
@@ -74,8 +80,10 @@ class Queue(object):
self
.
maxsize
=
None
if
maxsize
==
0
:
import
warnings
warnings
.
warn
(
'Queue(0) now equivalent to Queue(None); if you want a channel, use Channel'
,
DeprecationWarning
,
stacklevel
=
2
)
warnings
.
warn
(
'Queue(0) now equivalent to Queue(None); if you want a channel, use Channel'
,
DeprecationWarning
,
stacklevel
=
2
)
else
:
self
.
maxsize
=
maxsize
# Explicitly maintain order for getters and putters that block
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment