| 1 | <?php |
||
| 14 | class Batching implements Reducer |
||
| 15 | { |
||
| 16 | protected $next_reducer; |
||
| 17 | protected $batch_size; |
||
| 18 | protected $current_batch = []; |
||
| 19 | |||
| 20 | 4 | public function __construct(Reducer $next_reducer, $batch_size) |
|
| 29 | |||
| 30 | 3 | public function init() |
|
| 34 | |||
| 35 | 3 | public function step($result, $current) |
|
| 47 | |||
| 48 | 3 | public function complete($result) |
|
| 56 | } |
||
| 57 |