PHP Interface Cml\Interfaces\Queue

Afficher le fichier Open project: linhecheng/cmlphp

Méthodes publiques

Méthode 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 méthode

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

lPush() public méthode

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

rPop() public méthode

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

rPush() public méthode

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