Mixin which adds all of the command-sending helper methods to a base class.
Any sending of commands should be done through these methods, allowing them to be used in both a direct or batched manner.
The return type of each method matches the base class's sendCommand, so a direct client returns T
while a batching client returns void.
Mixin which adds all of the command-sending helper methods to a base class. Any sending of commands should be done through these methods, allowing them to be used in both a direct or batched manner.
The return type of each method matches the base class's
sendCommand, so a direct client returnsTwhile a batching client returnsvoid.