Files
Smart-Farm/vendor/swoole/ide-helper/output/swoole_async/namespace/MsgQueue.php
2025-12-22 14:34:25 +08:00

53 lines
579 B
PHP

<?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()
{
}
}