Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/Illuminate/Contracts/Queue/Monitor.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ public function looping($callback);
*/
public function failing($callback);

/**
* Register a callback to be executed when a daemon queue is starting.
*
* @param mixed $callback
* @return void
*/
public function starting($callback);

/**
* Register a callback to be executed when a daemon queue is stopping.
*
Expand Down
Loading