Files
jianfeng-server/vendor/swoole/ide-helper/output/swoole_async/namespace/RingQueue.php
2025-10-02 10:33:06 +08:00

53 lines
540 B
PHP
Executable File

<?php
namespace Swoole;
class RingQueue
{
public function __construct($len)
{
}
public function __destruct()
{
}
/**
* @return mixed
*/
public function push($data)
{
}
/**
* @return mixed
*/
public function pop()
{
}
/**
* @return mixed
*/
public function count()
{
}
/**
* @return mixed
*/
public function isFull()
{
}
/**
* @return mixed
*/
public function isEmpty()
{
}
}