1 | <?php |
||
10 | class BatchWriter implements Writer |
||
11 | { |
||
12 | private $delegate; |
||
13 | |||
14 | private $size; |
||
15 | |||
16 | private $queue; |
||
17 | |||
18 | 2 | public function __construct(Writer $delegate, $size = 20) |
|
23 | |||
24 | 2 | public function prepare() |
|
31 | |||
32 | 2 | public function writeItem(array $item) |
|
40 | |||
41 | public function finish() |
||
47 | |||
48 | 1 | private function flush() |
|
58 | } |
||
59 |