Sends a message to this actor. The message is queued and processed asynchronously. Fire-and-forget — no reply is expected. Bounded-mailbox interaction (see ActorOptions.Overflow): ActorOptions.Overflow#BLOCK BLOCK: the calling thread blocks until queue capacity i
(T message)
| 114 | * and is full |
| 115 | */ |
| 116 | void send(T message); |
| 117 | |
| 118 | /** |
| 119 | * Sends a message and returns an {@link Awaitable} that completes |
no outgoing calls
no test coverage detected