Skip to content

Commit b972669

Browse files
committed
Update README.md
1 parent 87919d3 commit b972669

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ It only supports Artisan commands at this time due to security concerns.
1919

2020
Cloud Tasks will make a HTTP call to your application. This package adds an endpoint to your application that accepts the HTTP call and its payload (an Artisan command) and executes the command.
2121

22+
#### withoutOverlapping, before, after, onSuccess, thenPing, etc
23+
24+
All these features are supported. This package scans your console kernel (`app/Console/Kernel.php`) to see if the scheduled command in Cloud Scheduler is also scheduled in the console kernel, If it is, it will respect all configured events/hooks associated with the command. (such as withoutOverlapping)
25+
2226
# Requirements
2327

2428
This package requires Laravel 5.6 or higher.
@@ -58,10 +62,6 @@ These are the most important settings:
5862

5963
<img src="/example.png">
6064

61-
# Planned features
62-
63-
Laravel's console kernel allows to execute actions after the command has finished running (such as ping a service) and prevent overlapping. This package does not support those features at this time. The goal is to eventually read the configured settings for a command (as defined in the console kernel) and execute the command exacty as defined there so that methods like `thenPing` and `withoutOverlapping` work out of the box without the need to configure anything.
64-
6565
# Security
6666

6767
The job handler requires each request to have an OpenID token. Cloud Scheduler will generate an OpenID token and send it along with the job payload to the handler.

0 commit comments

Comments
 (0)