mirror of
https://github.com/scylladb/scylladb.git
synced 2026-06-05 22:43:15 +00:00
It's not possible to abort an RPC call entirely, since the remote part continues running (if the message got out). Calling the provided abort source does the following: 1. if the message is still in the outgoing queue, drop it, 2. resolve waiter callbacks exceptionally. Using the word "cancellable" is more appropriate. Also write a small comment at `send_message_cancellable`.