src/BusContext.php 1 location
|
@@ 55-61 (lines=7) @@
|
| 52 |
|
* @param object $message |
| 53 |
|
* @param SendOptions|null $options |
| 54 |
|
*/ |
| 55 |
|
public function sendLocal($message, SendOptions $options = null) |
| 56 |
|
{ |
| 57 |
|
$options = $options ?: $this->outgoingOptionsFactory->createSendOptions(); |
| 58 |
|
$options->routeToLocalEndpointInstance(); |
| 59 |
|
|
| 60 |
|
$this->send($message, $options); |
| 61 |
|
} |
| 62 |
|
|
| 63 |
|
/** |
| 64 |
|
* @param object $message |
src/Pipeline/Incoming/IncomingContext.php 1 location
|
@@ 107-113 (lines=7) @@
|
| 104 |
|
* @param object $message |
| 105 |
|
* @param SendOptions|null $options |
| 106 |
|
*/ |
| 107 |
|
public function sendLocal($message, SendOptions $options = null) |
| 108 |
|
{ |
| 109 |
|
$options = $options ?: $this->outgoingOptionsFactory->createSendOptions(); |
| 110 |
|
$options->routeToLocalEndpointInstance(); |
| 111 |
|
|
| 112 |
|
$this->send($message, $options); |
| 113 |
|
} |
| 114 |
|
|
| 115 |
|
/** |
| 116 |
|
* @param object $message |