Closed
Description
Feature Request
Your issue may already be reported!
Please check out our active issues before creating one.
Is Your Feature Request Related to an Issue?
Since Thread() has a decorator, parallelprocessing should also have a decorator that allows users to mark a function as a data function.
Describe the Solution You'd Like
An example usage of the decorator
@thread.parallelprocess
def myFunc(dataEntry) -> Any: ...
data = myFunc([ 1, 2, 3, 4 ,5, ... ])
Similarly to @thread.threaded
, @thread.parallelprocess
should also support decorator parameters.