Skip to content

Instantly share code, notes, and snippets.

@dgafka
Created March 11, 2022 16:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dgafka/b445c8a50aa4ec417ce2c2f202088f4c to your computer and use it in GitHub Desktop.
Save dgafka/b445c8a50aa4ec417ce2c2f202088f4c to your computer and use it in GitHub Desktop.
scheduling-in-php-01.php
<?php
class NotificationService
{
#[Scheduled(endpointId: "notificationSender")]
#[Poller(fixedRateInMilliseconds: 10000)]
public function sendNotifications(): void
{
// this method will be called every 10 seconds
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment