1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-06 03:50:04 +02:00
Oinktube/vendor/jetbrains/phpstorm-stubs/rdkafka/functions.php
2023-02-17 11:42:45 -03:00

47 lines
726 B
PHP

<?php
/**
* Returns the full list of error codes.
* @return array
*/
function rd_kafka_get_err_descs(){}
/**
* Retrieve the current number of threads in use by librdkafka.
* @return int
*/
function rd_kafka_thread_cnt(){}
/**
* @param int $err Error code
*
* @return string Returns the error as a string.
*/
function rd_kafka_err2str($err)
{
}
/**
* @param int $errnox A system errno
*
* @return int Returns a kafka error code as an integer.
*/
function rd_kafka_errno2err($errnox)
{
}
/**
* @return int Returns the system errno as an integer.
*/
function rd_kafka_errno()
{
}
/**
* @param int $cnt
*
* @return int Returns the special offset as an integer.
*/
function rd_kafka_offset_tail($cnt)
{
}