google.golang.org/grpc.callInfo.maxSendMessageSize (field)
10 uses
google.golang.org/grpc (current package)
rpc_util.go#L159: maxSendMessageSize *int
rpc_util.go#L316: c.maxSendMessageSize = &o.MaxSendMsgSize
stream.go#L200: c.maxSendMessageSize = getMaxSize(mc.MaxReqSize, c.maxSendMessageSize, defaultClientMaxSendMessageSize)
stream.go#L728: if len(payload) > *cs.callInfo.maxSendMessageSize {
stream.go#L729: return status.Errorf(codes.ResourceExhausted, "trying to send message larger than max (%d vs. %d)", len(payload), *cs.callInfo.maxSendMessageSize)
stream.go#L1045: c.maxSendMessageSize = getMaxSize(nil, c.maxSendMessageSize, defaultServerMaxSendMessageSize)
stream.go#L1197: if len(payld) > *as.callInfo.maxSendMessageSize {
stream.go#L1198: return status.Errorf(codes.ResourceExhausted, "trying to send message larger than max (%d vs. %d)", len(payld), *as.callInfo.maxSendMessageSize)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |