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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
<?php
/** @generate-class-entries */
/**
* @var int
* @cvalue PHP_MSG_IPC_NOWAIT
*/
const MSG_IPC_NOWAIT = UNKNOWN;
/**
* @var int
* @cvalue EAGAIN
*/
const MSG_EAGAIN = UNKNOWN;
/**
* @var int
* @cvalue ENOMSG
*/
const MSG_ENOMSG = UNKNOWN;
/**
* @var int
* @cvalue PHP_MSG_NOERROR
*/
const MSG_NOERROR = UNKNOWN;
/**
* @var int
* @cvalue PHP_MSG_EXCEPT
*/
const MSG_EXCEPT = UNKNOWN;
/**
* @strict-properties
* @not-serializable
*/
final class SysvMessageQueue
{
}
function msg_get_queue(int $key, int $permissions = 0666): SysvMessageQueue|false {}
/**
* @param string|int|float|bool $message
* @param int $error_code
*/
function msg_send(SysvMessageQueue $queue, int $message_type, $message, bool $serialize = true, bool $blocking = true, &$error_code = null): bool {}
/**
* @param int $received_message_type
* @param int $error_code
*/
function msg_receive(
SysvMessageQueue $queue,
int $desired_message_type,
&$received_message_type,
int $max_message_size,
mixed &$message,
bool $unserialize = true,
int $flags = 0,
&$error_code = null
): bool {}
function msg_remove_queue(SysvMessageQueue $queue): bool {}
function msg_stat_queue(SysvMessageQueue $queue): array|false {}
function msg_set_queue(SysvMessageQueue $queue, array $data): bool {}
function msg_queue_exists(int $key): bool {}
|