Skip to main content

some Queue subclasses and ducktypes

Project description

Latest release 20191007: PushQueue: improve str. Clean lint, drop cs.obj dependency.

Queue-like items: iterable queues and channels.

Class Channel

A zero-storage data passage. Unlike a Queue(1), put() blocks waiting for the matching get().

Function IterablePriorityQueue(*args, capacity=0, name=None, **kw)

Factory to create an iterable PriorityQueue.

Function IterableQueue(*args, capacity=0, name=None, **kw)

Factory to create an iterable Queue.

Class NullQueue

MRO: cs.resources.MultiOpenMixin
A queue-like object that discards its inputs. Calls to .get() raise Queue_Empty.

Method NullQueue.__init__(self, blocking=False, name=None)

Initialise the NullQueue.

Parameters:

  • blocking: if true, calls to .get() block until .shutdown(). Default: False.
  • name: a name for this NullQueue.

Class PushQueue

MRO: cs.resources.MultiOpenMixin
A puttable object which looks like an iterable Queue.

Calling .put(item) calls func_push supplied at initialisation to trigger a function on data arrival, whose processing is mediated queued via a Later for delivery to the output queue.

Method PushQueue.__init__(self, name, functor, outQ)

Initialise the PushQueue with the Later L, the callable functor and the output queue outQ.

Parameters:

  • functor is a one-to-many function which accepts a single item of input and returns an iterable of outputs; it may be a generator. These outputs are passed to outQ.put individually as received.
  • outQ is a MultiOpenMixin which accepts via its .put() method.

Class TimerQueue

Class to run a lot of "in the future" jobs without using a bazillion Timer threads.

Release Log

Release 20191007: PushQueue: improve str. Clean lint, drop cs.obj dependency.

Release 20190812: _QueueIterator: do MultiOpenMixin.init so that str is functional.

Release 20181022: Bugfix Channel, drasticly simplify PushQueue, other minor changes.

Release 20160828: Use "install_requires" instead of "requires" in DISTINFO. TimerQueue.add: support optional *a and **kw arguments for func. Many bugfixes and internal changes.

Release 20150115: More PyPI metadata fixups.

Release 20150111: Initial PyPI release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cs.queues-20191007.tar.gz (6.5 kB view details)

Uploaded Source

File details

Details for the file cs.queues-20191007.tar.gz.

File metadata

  • Download URL: cs.queues-20191007.tar.gz
  • Upload date:
  • Size: 6.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.4

File hashes

Hashes for cs.queues-20191007.tar.gz
Algorithm Hash digest
SHA256 9d38c0abfc56d0d6b74b0489e7c83232a619d4e49809fcd76f5543fbdea63d03
MD5 cd94b942cbea331bebc4bf2538d8aae6
BLAKE2b-256 cf16179b19ae209c2b68dd26fba65a0cb6da869b92b3de46fbf131f2e8946c16

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page