PHP Interface Cml\Interfaces\Queue

Show file Open project: linhecheng/cmlphp

Public Methods

Method Description
lPop ( string $name ) : mixed 从列表头出队
lPush ( string $name, mixed $data ) : mixed 从列表头入队
rPop ( string $name ) : mixed 从列表尾出队
rPush ( string $name, mixed $data ) : mixed 从列表尾入队

Method Details

lPop() public method

从列表头出队
public lPop ( string $name ) : mixed
$name string 要从列表头出队的队列的名称
return mixed

lPush() public method

从列表头入队
public lPush ( string $name, mixed $data ) : mixed
$name string 要从列表头入队的队列的名称
$data mixed 要入队的数据
return mixed

rPop() public method

从列表尾出队
public rPop ( string $name ) : mixed
$name string 要从列表尾出队的队列的名称
return mixed

rPush() public method

从列表尾入队
public rPush ( string $name, mixed $data ) : mixed
$name string 要从列表尾入队的队列的名称
$data mixed 要入队的数据
return mixed