-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathOctaneListener.php
36 lines (32 loc) · 1.07 KB
/
OctaneListener.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
declare(strict_types=1);
namespace Flasher\Laravel\EventListener;
use Flasher\Prime\EventDispatcher\EventListener\NotificationLoggerListener;
use Laravel\Octane\Events\RequestReceived;
/**
* OctaneListener - Resets notification logger between Octane requests.
*
* This listener ensures that notifications from previous requests don't
* leak into new requests when running Laravel Octane, which keeps workers
* alive between requests.
*
* Design patterns:
* - Observer: Observes Octane request events
* - State Reset: Cleans up state between stateful worker requests
*/
final readonly class OctaneListener
{
/**
* Handle the Octane RequestReceived event.
*
* Resets the notification logger to ensure clean state for the new request.
*
* @param RequestReceived $event The Octane request received event
*/
public function handle(RequestReceived $event): void
{
/** @var NotificationLoggerListener $listener */
$listener = $event->sandbox->make('flasher.notification_logger_listener');
$listener->reset();
}
}