Metadata-Version: 1.1
Name: CallQueue
Version: 0.1.0
Summary: Store functions and methods for delayed callback
Home-page: https://code.google.com/p/pycallqueue/
Author: Joshua R. English
Author-email: Joshua.R.English@gmail.com
License: LICENSE.txt
Description: ==========
        Call Queue
        ==========
        
        Call Queue provides a mixin class to store functions, methods, or any callable object
        with the associated arguments and keyword arguments. 
        
        Each Queuable object has a key, so queues can be separated by need.
        
        It can be used directly::
        
        	#!/usr/bin/env python
        
        	from queueable import Queueable
        
        	Arthur = Queueable('human')
        
        	Trillian = Queuable('human')
        
        	Ford = Queuable('alien')
        
        	Zaphod = Queueable('alien')
        
        	def drink_tea(response):
        		print "This stuff {}".format(response)
        
        	Arthur.queue(drink_tea, "tastes filthy") # Nothing happens
        
        	Ford.process_queue() # Nothing happens
        
        	Trillian.process_queue() # runs the queued drink_tea function
        
        
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Topic :: Software Development
