1 | <?php |
||
20 | abstract class StreamCollector extends Collector implements StreamCollectorInterface |
||
21 | { |
||
22 | /** |
||
23 | * @param Process $process |
||
24 | * @param DataSourceInterface $dataSource |
||
25 | * @param JsonPatch|null $jsonPatch |
||
26 | */ |
||
27 | 118 | public function __construct(Process $process, DataSourceInterface $dataSource, JsonPatch $jsonPatch = null) |
|
36 | |||
37 | abstract protected function registerListeners(); |
||
38 | } |
||
39 |