-
Notifications
You must be signed in to change notification settings - Fork 11.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Concurrency Process Driver: using closures with bindings #55219
Comments
Is this supposed to be a feature of concurrency? Concurrency does not share the php process. |
The However, there are some caveats to serializing closures:
The issue you have found is a known caveat, but we should probably add a disclaimer to the documentation to highlight this. Here is an example command to show how using a property causes an error: <?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Laravel\SerializableClosure\SerializableClosure;
class SerializeClosure extends Command {
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'app:serialize-closure';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Testing serializing closures!';
/**
* Execute the console command.
*/
public function handle() {
SerializableClosure::setSecretKey('secret');
// Normal closure
$closure = fn () => 'james';
$this->info($closure()); // 'james'
$serialized = serialize(new SerializableClosure($closure));
$newClosure = unserialize($serialized)->getClosure();
$this->info($newClosure()); // 'james'
// Now to try with property
$closure = fn () => $this->description; // Uses a property
$this->info($closure()); // 'Testing serializing closures!'
$serialized = serialize(new SerializableClosure($closure)); // Throws an error!
// Cannot assign Laravel\SerializableClosure\Serializers\Native to property...
$newClosure = unserialize($serialized)->getClosure();
$this->info($newClosure()); // Not reached due to error
}
} |
Your issue reminded me of a recent tweet by Steve Bauman:
|
@AndrewMast I have tried implementing something close to your suggesstion, but it just doesn't work with the process driver. I have settled with the fork driver. My Full API: // AppServiceProvider
Collection::macro('mapForConcurrency', function ($callback) {
/** @var Collection $this */
return $this->map(fn($value, $key) => fn() => $callback($value, $key))->all();
});
// ExampleClass
/**
* Run Concurrently
* @param Closure|array $tasks
* @return \Illuminate\Support\Collection
*/
protected function runConcurrently($tasks)
{
return collect(
Concurrency::driver('fork')->run(
$tasks
)
);
}
// Example Call
$this->runConcurrently(
collect([1,2,3])->mapForConcurrency(function($seconds){
$this->sleepFor($seconds);
})
); |
You are still using |
Laravel Version
12.4.1
PHP Version
8.4.5
Database Driver & Version
No response
Description
When using the process driver with a closure that uses
$this
, the call fails with the error:Cannot assign Laravel\\SerializableClosure\\Serializers\\Native to property Symfony\\Component\\Console\\Input\\InputArgument::$suggestedValues of type Closure|array
At first i thought the issue was from my macro
So I narrowed it down to a simple call:
Switching to the fork driver works without issues.
Steps To Reproduce
Any closure that make use of
$this
fails.The text was updated successfully, but these errors were encountered: