回复失败
(requestId int64, message string)
| 488 | |
| 489 | // 回复失败 |
| 490 | func (this *APIStream) replyFail(requestId int64, message string) { |
| 491 | _ = this.stream.Send(&pb.NodeStreamMessage{RequestId: requestId, IsOk: false, Message: message}) |
| 492 | } |
| 493 | |
| 494 | // 回复成功 |
| 495 | func (this *APIStream) replyOk(requestId int64, message string) { |
no test coverage detected