Skip to content
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

Add complete method callback to array-based method of background processes #2

Open
alexstandiford opened this issue Jul 19, 2021 · 0 comments
Labels
good first issue Good for newcomers

Comments

@alexstandiford
Copy link
Contributor

Batch processes have a complete method, and it would be nice if it were possible to specify the callback for this using Underpin's array-based method. Something like this:

underpin()->background_processes()->add( 'example', [
	'action'               => 'example_action_name', // Action Name. Must be unique.
	'task_action_callback' => function ( $item ) {   // Callback to fire on a single item.
	  // Do an action
	},
        'complete_callback'     => function (){
          // Do an action on-complete
        }
] );
@alexstandiford alexstandiford added the good first issue Good for newcomers label Oct 25, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant