| 106 | } |
| 107 | |
| 108 | type serviceStream struct { |
| 109 | s api.Streaming_StreamServer |
| 110 | cc chan struct{} |
| 111 | } |
| 112 | |
| 113 | func (ss *serviceStream) Send(a typeurl.Any) (err error) { |
| 114 | err = errgrpc.ToNative(ss.s.Send(typeurl.MarshalProto(a))) |
nothing calls this directly
no outgoing calls
no test coverage detected