Result and friends: various classable classes for deferred delivery of values.
Project description
Result and friends: various classable classes for deferred delivery of values.
Latest release 20200521:
- OnDemandResult: bugfixes and improvements.
- Result.bg: accept optional _name parameter to specify the Result.name.
A Result is the base class for several callable subclasses which will receive values at a later point in time, and can also be used standalone without subclassing.
A call to a Result will block until the value is received or the Result is cancelled, which will raise an exception in the caller. A Result may be called by multiple users, before or after the value has been delivered; if the value has been delivered the caller returns with it immediately. A Result's state may be inspected (pending, running, ready, cancelled). Callbacks can be registered via a Result's .notify method.
An incomplete Result can be told to call a function to compute its value; the function return will be stored as the value unless the function raises an exception, in which case the exception information is recorded instead. If an exception occurred, it will be reraised for any caller of the Result.
Trite example::
R = Result(name="my demo")
Thread 1: # this blocks until the Result is ready value = R() print(value) # prints 3 once Thread 2 (below) assigns to it
Thread 2: R.result = 3
Thread 3: value = R() # returns immediately with 3
You can also collect multiple Results in completion order using the report() function::
Rs = [ ... list of Results of whatever type ... ] ... for R in report(Rs): x = R() # collect result, will return immediately because # the Result is complete print(x) # print result
Function after(Rs, R, func, *a, **kw)
After the completion of Rs
call func(*a,**kw)
and return
its result via R
; return the Result
object.
Parameters:
Rs
: an iterable of Results.R
: aResult
to collect to result of callingfunc
. IfNone
, one will be created.func
,a
,kw
: a callable and its arguments.
Class AsynchState(enum.Enum)
State tokens for Result
s.
Function bg(func, *a, **kw)
Dispatch a Thread
to run func
, return a Result
to collect its value.
Class CancellationError(builtins.Exception,builtins.BaseException)
Raised when accessing result or exc_info after cancellation.
Class OnDemandFunction(Result)
Wrap a callable, run it when required.
Class OnDemandResult(Result)
Wrap a callable, run it when required.
Function report(LFs)
Generator which yields completed Result
s.
This is a generator that yields Result
s as they complete,
useful for waiting for a sequence of Result
s
that may complete in an arbitrary order.
Class Result
Basic class for asynchronous collection of a result. This is also used to make OnDemandFunctions, LateFunctions and other objects with asynchronous termination.
Method Result.__init__(self, name=None, lock=None, result=None)
Base initialiser for Result
objects and subclasses.
Parameter:
name
: optional parameter naming this object.lock
: optional locking object, defaults to a newthreading.Lock
.result
: if notNone
, prefill the.result
property.
Class ResultState(enum.Enum)
State tokens for Result
s.
Release Log
Release 20200521:
- OnDemandResult: bugfixes and improvements.
- Result.bg: accept optional _name parameter to specify the Result.name.
Release 20191007:
- Simplify ResultState definition.
- Result.bg: use cs.threads.bg to dispatch the Thread.
Release 20190522:
- Result.call now accepts an optional callable and args.
- Result.call: set the Result state to "running" before dispatching the function.
- Rename OnDemandFunction to OnDemandResult, keep old name around for compatibility.
- Result._complete: also permitted if state==cancelled.
Release 20190309: Small bugfix.
Release 20181231:
- Result.call: report baser exceptions than BaseException.
- Drop _PendingFunction abstract class.
Release 20181109.1: DISTINFO update.
Release 20181109:
- Derive CancellationError from Exception instead of RuntimeError, fix initialiser.
- Rename AsynchState to ResultState and make it an Enum.
- Make Results hashable and comparable for equality for use as mapping keys: equality is identity.
- New Result.collected attribute, set true if .result or .exc_info are accessed, logs an error if Result.del is called when false, may be set true externally if a Result is not required.
- Drop
final
parameter; never used and supplanted by Result.notify. - Result.join: return the .result and .exc_info properties in order to mark the Result as collected.
- Result: set .collected to True when a notifier has been called successfully.
- Bugfix Result.cancel: apply the new cancelled state.
Release 20171231:
- Bugfix Result.call to catch BaseException instead of Exception.
- New convenience function bg(func) to dispatch
func
in a separate Thread and return a Result to collect its value.
Release 20171030.1: Fix module requirements specification.
Release 20171030: New Result.bg(func, *a, **kw) method to dispatch function in separate Thread to compute the Result value.
Release 20170903: rename cs.asynchron to cs.result
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file cs.result-20200521.tar.gz
.
File metadata
- Download URL: cs.result-20200521.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 432a22db7563a13406d80f7d64cee2dd9d4cc352c5381a319ab910f41aec8cfe |
|
MD5 | 548c5ef79185032b6ccec40dc4d618db |
|
BLAKE2b-256 | 8dc087c549a35fcc61bb367961bbc638f52b2fd92d57f9e78cdea0a53649c6a1 |