parallel
parallel copied to clipboard
Arguments of tasks in parallel runtime
In the documentation it's written that the arguments of a task can't contain internal objects.
By internal objects do they mean instances of classes defined in the php core (such as DateTime)?
Are classes defined in a PHP extension considered as internal classes/objects?
There is a way to bypass this problem? For example is it possible to pass data from the main program to the parallel task using a channel?
Thanks!