1 | <?php |
||
14 | class BatchProducer extends Producer |
||
15 | { |
||
16 | private $limit = 0; |
||
17 | private $queued = 0; |
||
18 | |||
19 | public static function factory(AbstractConnection $connection, $limit = 100) |
||
27 | |||
28 | /** |
||
29 | * @param array|\Traversable $messages |
||
30 | * @throws \AmqpWorkers\Exception\ProducerNotProperlyConfigured |
||
31 | */ |
||
32 | public function produce($messages) |
||
55 | |||
56 | protected function flush() |
||
61 | } |
||
62 |