You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MetaDataFuture subclass of Future that allows passing metadata on executor.submit.
Custom executor subclass to allow for the above, as well as:
Support calling unpickleable functions by passing them to the executor rather than the submit function (as with paraloop)
Support passing a generator to map that will be run on its own thread to allow for yielding futures even before the "future generator" is depleted and without blocking the main thread
Support scheduling tasks rather than submitting them right away? Can use sched and use syntax similar to schedule.
The text was updated successfully, but these errors were encountered:
To add:
Future
that allows passing metadata on executor.submit.paraloop
)map
that will be run on its own thread to allow for yielding futures even before the "future generator" is depleted and without blocking the main threadsched
and use syntax similar toschedule
.The text was updated successfully, but these errors were encountered: