const google.golang.org/grpc/codes.Canceled
16 uses
google.golang.org/grpc/codes (current package)
code_string.go#L27: case Canceled:
codes.go#L39: Canceled Code = 1
codes.go#L200: `"CANCELLED"`:/* [sic] */ Canceled,
google.golang.org/grpc
clientconn.go#L66: ErrClientConnClosing = status.Error(codes.Canceled, "grpc: the client connection is closing")
clientconn.go#L1352: return nil, status.Error(codes.Canceled, "the provided transport is no longer valid to use")
picker_wrapper.go#L115: return nil, nil, status.Error(codes.Canceled, errStr)
rpc_util.go#L793: return status.Error(codes.Canceled, err.Error())
stream.go#L841: if cs.binlog != nil && status.Code(err) == codes.Canceled {
stream.go#L1110: as.finish(status.Error(codes.Canceled, "grpc: the SubConn is closing"))
google.golang.org/grpc/internal/transport
handler_server.go#L460: return status.Error(codes.Canceled, err.Error())
http2_client.go#L1024: if statusCode == codes.Canceled {
http_util.go#L69: http2.ErrCodeCancel: codes.Canceled,
http_util.go#L78: codes.Canceled: http2.ErrCodeCancel,
transport.go#L801: return status.Error(codes.Canceled, err.Error())
google.golang.org/grpc/status
status.go#L123: return New(codes.Canceled, err.Error())
go.opencensus.io/plugin/ocgrpc
stats_common.go#L179: case codes.Canceled:
 |
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. |