We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Today it's only possible to declare process through YAML. We should find a way to allow easily (with custom code) :
$processBuilder->fromInput() ->readFile('csv', $readOptions) // hypothetical FileReaderTask, see #78 ->filter(function($item) {return test($item);}) // hypothetical CallbackFilterTask, maybe linked to #96 ->transform(['transformer_code' => $transformerOptions]) // TransformerTask call ->pipe($taskService, $taskOptions) // generic call ->writeFile('csv', $writeOptions); // hypothetical FileWriterTask, see #78 $process = $processBuilder->build(); $processManager->execute($process);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Today it's only possible to declare process through YAML. We should find a way to allow easily (with custom code) :
Requirements
The text was updated successfully, but these errors were encountered: