1 | <?php |
||
5 | class UnicastRoutingTable |
||
6 | { |
||
7 | /** |
||
8 | * @var array |
||
9 | */ |
||
10 | private $staticRules = []; |
||
11 | |||
12 | /** |
||
13 | * @param string $messageFqcn |
||
14 | * @param string $endpointName |
||
15 | */ |
||
16 | 4 | public function routeToEndpoint($messageFqcn, $endpointName) |
|
28 | |||
29 | /** |
||
30 | * @param string[] $messageTypes |
||
31 | * |
||
32 | * @return string[] |
||
33 | */ |
||
34 | 4 | public function getEndpointNamesFor(array $messageTypes) |
|
45 | } |
||
46 |