Beispiel #1
0
 public ValueTask Send(NatsOperationId opId, object op = default) => outboundChannel.WriteAsync(new NatsOperation(opId, op));
Beispiel #2
0
 public NatsOperation(NatsOperationId opId, object op = default)
 {
     OpId = opId;
     Op   = op;
 }