(ackPk wshrpc.CommandStreamAckData)
| 109 | } |
| 110 | |
| 111 | func (b *Broker) SendAck(ackPk wshrpc.CommandStreamAckData) { |
| 112 | b.sendQueue.Enqueue(workItem{workType: "sendack", ackPk: ackPk}) |
| 113 | } |
| 114 | |
| 115 | func (b *Broker) SendData(dataPk wshrpc.CommandStreamData) { |
| 116 | b.sendQueue.Enqueue(workItem{workType: "senddata", dataPk: dataPk}) |
no test coverage detected