WriterBridge - used by the writer broker Sends data to the pipe, receives acks from the pipe
| 12 | // WriterBridge - used by the writer broker |
| 13 | // Sends data to the pipe, receives acks from the pipe |
| 14 | type WriterBridge struct { |
| 15 | pipe *DeliveryPipe |
| 16 | } |
| 17 | |
| 18 | func (b *WriterBridge) StreamDataCommand(data wshrpc.CommandStreamData, opts *wshrpc.RpcOpts) error { |
| 19 | b.pipe.EnqueueData(data) |
nothing calls this directly
no outgoing calls
no test coverage detected