MaxRecvMsgSizeCallOption is a CallOption that indicates the maximum message size in bytes the client can receive. # Experimental Notice: This type is EXPERIMENTAL and may be changed or removed in a later release.
| 416 | // Notice: This type is EXPERIMENTAL and may be changed or removed in a |
| 417 | // later release. |
| 418 | type MaxRecvMsgSizeCallOption struct { |
| 419 | MaxRecvMsgSize int |
| 420 | } |
| 421 | |
| 422 | func (o MaxRecvMsgSizeCallOption) before(c *callInfo) error { |
| 423 | c.maxReceiveMessageSize = &o.MaxRecvMsgSize |
nothing calls this directly
no outgoing calls
no test coverage detected