interface Illuminate / Contracts / Queue / Monitor
You're browsing the documentation for an upcoming version of Laravel. The documentation and features of this release are subject to change.

Monitor

Methods

public

looping ( $callback ) : void

Register a callback to be executed on every iteration through the queue loop.

Parameters

  • $callback mixed
public

failing ( $callback ) : void

Register a callback to be executed when a job fails after the maximum number of retries.

Parameters

  • $callback mixed
public

stopping ( $callback ) : void

Register a callback to be executed when a daemon queue is stopping.

Parameters

  • $callback mixed