1 | <?php |
||
17 | class ShardCommand extends AbstractCommand |
||
18 | { |
||
19 | protected function configure() |
||
26 | |||
27 | /** |
||
28 | * @return int |
||
29 | */ |
||
30 | protected function execute(InputInterface $input, OutputInterface $output) |
||
52 | |||
53 | protected function processDocumentIndex(SchemaManager $sm, string $document, ?int $maxTimeMs = null, ?WriteConcern $writeConcern = null) |
||
57 | |||
58 | protected function processIndex(SchemaManager $sm, ?int $maxTimeMs = null, ?WriteConcern $writeConcern = null) |
||
62 | |||
63 | /** |
||
64 | * @throws BadMethodCallException |
||
65 | */ |
||
66 | protected function processDocumentCollection(SchemaManager $sm, string $document, ?int $maxTimeMs, ?WriteConcern $writeConcern) |
||
70 | |||
71 | /** |
||
72 | * @throws BadMethodCallException |
||
73 | */ |
||
74 | protected function processCollection(SchemaManager $sm, ?int $maxTimeMs, ?WriteConcern $writeConcern) |
||
78 | |||
79 | /** |
||
80 | * @throws BadMethodCallException |
||
81 | */ |
||
82 | protected function processDocumentDb(SchemaManager $sm, string $document, ?int $maxTimeMs, ?WriteConcern $writeConcern) |
||
86 | |||
87 | /** |
||
88 | * @throws BadMethodCallException |
||
89 | */ |
||
90 | protected function processDb(SchemaManager $sm, ?int $maxTimeMs, ?WriteConcern $writeConcern) |
||
94 | } |
||
95 |