12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Jenner
- * Date: 2015/8/12
- * Time: 15:11
- */
- namespace Jenner\SimpleFork\Queue;
- /**
- * queue for processes to transfer data
- *
- * @package Jenner\SimpleFork\Queue
- */
- interface QueueInterface
- {
- /**
- * put value into the queue of channel
- *
- * @param $value
- * @return bool
- */
- public function put($value);
- /**
- * get value from the queue of channel
- *
- * @param bool $block if block when the queue is empty
- * @return bool|string
- */
- public function get($block = false);
- }
|