Methods |
public
|
__construct(SignalRegistry $registry): void
Create a new signal registrar instance.
Create a new signal registrar instance.
|
#
|
public
|
register(int $signal, callable(int $signal): void $callback): void
Register a new signal handler.
Register a new signal handler.
|
#
|
protected
|
initializeSignal($signal): array<int, callable(int $signal): void>|null
Gets the signal's existing handler in array format.
Gets the signal's existing handler in array format.
|
#
|
public
|
unregister(): void
Unregister the current signal handlers.
Unregister the current signal handlers.
|
#
|
public
static
|
whenAvailable(callable $callback): void
Execute the given callback if "signals" should be used and are available.
Execute the given callback if "signals" should be used and are available.
|
#
|
protected
|
getHandlers(): array<int, array<int, callable>>
Get the registry's handlers.
Get the registry's handlers.
|
#
|
protected
|
setHandlers(array<int, array<int, callable(int $signal): void>> $handlers): void
Set the registry's handlers.
Set the registry's handlers.
|
#
|
public
static
|
resolveAvailabilityUsing(callable(): bool $resolver): void
Set the availability resolver.
Set the availability resolver.
|
#
|