IsStreaming determines whether the method streams payload or result.
()
| 416 | |
| 417 | // IsStreaming determines whether the method streams payload or result. |
| 418 | func (m *MethodExpr) IsStreaming() bool { |
| 419 | return m.IsPayloadStreaming() || m.IsResultStreaming() |
| 420 | } |
| 421 | |
| 422 | // IsPayloadStreaming determines whether the method streams payload. |
| 423 | func (m *MethodExpr) IsPayloadStreaming() bool { |
no test coverage detected