| 1 | <?php |
||
| 12 | class MulticastPublishRoutingConnector implements StageConnectorInterface |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var OutgoingContextFactory |
||
| 16 | */ |
||
| 17 | private $contextFactory; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param OutgoingContextFactory $contextFactory |
||
| 21 | */ |
||
| 22 | 5 | public function __construct(OutgoingContextFactory $contextFactory) |
|
| 26 | |||
| 27 | /** |
||
| 28 | * @param OutgoingPublishContext $context |
||
| 29 | * @param callable $next |
||
| 30 | */ |
||
| 31 | 2 | public function invoke($context, callable $next) |
|
| 39 | |||
| 40 | /** |
||
| 41 | * @return string |
||
| 42 | */ |
||
| 43 | 1 | public static function getStageContextClass() |
|
| 47 | |||
| 48 | /** |
||
| 49 | * @return string |
||
| 50 | */ |
||
| 51 | 1 | public static function getNextStageContextClass() |
|
| 55 | } |
||
| 56 |