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

53 lines
579 B
PHP
Executable File

<?php
namespace Swoole;
class MsgQueue
{
public function __construct($len)
{
}
public function __destruct()
{
}
/**
* @return mixed
*/
public function push($data, $type = null)
{
}
/**
* @return mixed
*/
public function pop($type = null)
{
}
/**
* @return mixed
*/
public function setBlocking($blocking)
{
}
/**
* @return mixed
*/
public function stats()
{
}
/**
* @return mixed
*/
public function destroy()
{
}
}