streams.pb.go 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.22.0
  4. // protoc v3.11.2
  5. // source: protos/streams/v1/streams.proto
  6. package v1
  7. import (
  8. context "context"
  9. proto "github.com/golang/protobuf/proto"
  10. any "github.com/golang/protobuf/ptypes/any"
  11. grpc "google.golang.org/grpc"
  12. codes "google.golang.org/grpc/codes"
  13. status "google.golang.org/grpc/status"
  14. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  15. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  16. reflect "reflect"
  17. sync "sync"
  18. )
  19. const (
  20. // Verify that this generated code is sufficiently up-to-date.
  21. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  22. // Verify that runtime/protoimpl is sufficiently up-to-date.
  23. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  24. )
  25. // This is a compile-time assertion that a sufficiently up-to-date version
  26. // of the legacy proto package is being used.
  27. const _ = proto.ProtoPackageIsVersion4
  28. type IOStream int32
  29. const (
  30. IOStream_STDIN IOStream = 0
  31. IOStream_STDOUT IOStream = 1
  32. IOStream_STDERR IOStream = 2
  33. )
  34. // Enum value maps for IOStream.
  35. var (
  36. IOStream_name = map[int32]string{
  37. 0: "STDIN",
  38. 1: "STDOUT",
  39. 2: "STDERR",
  40. }
  41. IOStream_value = map[string]int32{
  42. "STDIN": 0,
  43. "STDOUT": 1,
  44. "STDERR": 2,
  45. }
  46. )
  47. func (x IOStream) Enum() *IOStream {
  48. p := new(IOStream)
  49. *p = x
  50. return p
  51. }
  52. func (x IOStream) String() string {
  53. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  54. }
  55. func (IOStream) Descriptor() protoreflect.EnumDescriptor {
  56. return file_protos_streams_v1_streams_proto_enumTypes[0].Descriptor()
  57. }
  58. func (IOStream) Type() protoreflect.EnumType {
  59. return &file_protos_streams_v1_streams_proto_enumTypes[0]
  60. }
  61. func (x IOStream) Number() protoreflect.EnumNumber {
  62. return protoreflect.EnumNumber(x)
  63. }
  64. // Deprecated: Use IOStream.Descriptor instead.
  65. func (IOStream) EnumDescriptor() ([]byte, []int) {
  66. return file_protos_streams_v1_streams_proto_rawDescGZIP(), []int{0}
  67. }
  68. type BytesMessage struct {
  69. state protoimpl.MessageState
  70. sizeCache protoimpl.SizeCache
  71. unknownFields protoimpl.UnknownFields
  72. Type IOStream `protobuf:"varint,1,opt,name=type,proto3,enum=com.docker.api.protos.streams.v1.IOStream" json:"type,omitempty"`
  73. Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
  74. }
  75. func (x *BytesMessage) Reset() {
  76. *x = BytesMessage{}
  77. if protoimpl.UnsafeEnabled {
  78. mi := &file_protos_streams_v1_streams_proto_msgTypes[0]
  79. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  80. ms.StoreMessageInfo(mi)
  81. }
  82. }
  83. func (x *BytesMessage) String() string {
  84. return protoimpl.X.MessageStringOf(x)
  85. }
  86. func (*BytesMessage) ProtoMessage() {}
  87. func (x *BytesMessage) ProtoReflect() protoreflect.Message {
  88. mi := &file_protos_streams_v1_streams_proto_msgTypes[0]
  89. if protoimpl.UnsafeEnabled && x != nil {
  90. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  91. if ms.LoadMessageInfo() == nil {
  92. ms.StoreMessageInfo(mi)
  93. }
  94. return ms
  95. }
  96. return mi.MessageOf(x)
  97. }
  98. // Deprecated: Use BytesMessage.ProtoReflect.Descriptor instead.
  99. func (*BytesMessage) Descriptor() ([]byte, []int) {
  100. return file_protos_streams_v1_streams_proto_rawDescGZIP(), []int{0}
  101. }
  102. func (x *BytesMessage) GetType() IOStream {
  103. if x != nil {
  104. return x.Type
  105. }
  106. return IOStream_STDIN
  107. }
  108. func (x *BytesMessage) GetValue() []byte {
  109. if x != nil {
  110. return x.Value
  111. }
  112. return nil
  113. }
  114. type ResizeMessage struct {
  115. state protoimpl.MessageState
  116. sizeCache protoimpl.SizeCache
  117. unknownFields protoimpl.UnknownFields
  118. Width uint32 `protobuf:"varint,1,opt,name=width,proto3" json:"width,omitempty"`
  119. Height uint32 `protobuf:"varint,2,opt,name=height,proto3" json:"height,omitempty"`
  120. }
  121. func (x *ResizeMessage) Reset() {
  122. *x = ResizeMessage{}
  123. if protoimpl.UnsafeEnabled {
  124. mi := &file_protos_streams_v1_streams_proto_msgTypes[1]
  125. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  126. ms.StoreMessageInfo(mi)
  127. }
  128. }
  129. func (x *ResizeMessage) String() string {
  130. return protoimpl.X.MessageStringOf(x)
  131. }
  132. func (*ResizeMessage) ProtoMessage() {}
  133. func (x *ResizeMessage) ProtoReflect() protoreflect.Message {
  134. mi := &file_protos_streams_v1_streams_proto_msgTypes[1]
  135. if protoimpl.UnsafeEnabled && x != nil {
  136. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  137. if ms.LoadMessageInfo() == nil {
  138. ms.StoreMessageInfo(mi)
  139. }
  140. return ms
  141. }
  142. return mi.MessageOf(x)
  143. }
  144. // Deprecated: Use ResizeMessage.ProtoReflect.Descriptor instead.
  145. func (*ResizeMessage) Descriptor() ([]byte, []int) {
  146. return file_protos_streams_v1_streams_proto_rawDescGZIP(), []int{1}
  147. }
  148. func (x *ResizeMessage) GetWidth() uint32 {
  149. if x != nil {
  150. return x.Width
  151. }
  152. return 0
  153. }
  154. func (x *ResizeMessage) GetHeight() uint32 {
  155. if x != nil {
  156. return x.Height
  157. }
  158. return 0
  159. }
  160. type ExitMessage struct {
  161. state protoimpl.MessageState
  162. sizeCache protoimpl.SizeCache
  163. unknownFields protoimpl.UnknownFields
  164. Status uint32 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
  165. }
  166. func (x *ExitMessage) Reset() {
  167. *x = ExitMessage{}
  168. if protoimpl.UnsafeEnabled {
  169. mi := &file_protos_streams_v1_streams_proto_msgTypes[2]
  170. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  171. ms.StoreMessageInfo(mi)
  172. }
  173. }
  174. func (x *ExitMessage) String() string {
  175. return protoimpl.X.MessageStringOf(x)
  176. }
  177. func (*ExitMessage) ProtoMessage() {}
  178. func (x *ExitMessage) ProtoReflect() protoreflect.Message {
  179. mi := &file_protos_streams_v1_streams_proto_msgTypes[2]
  180. if protoimpl.UnsafeEnabled && x != nil {
  181. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  182. if ms.LoadMessageInfo() == nil {
  183. ms.StoreMessageInfo(mi)
  184. }
  185. return ms
  186. }
  187. return mi.MessageOf(x)
  188. }
  189. // Deprecated: Use ExitMessage.ProtoReflect.Descriptor instead.
  190. func (*ExitMessage) Descriptor() ([]byte, []int) {
  191. return file_protos_streams_v1_streams_proto_rawDescGZIP(), []int{2}
  192. }
  193. func (x *ExitMessage) GetStatus() uint32 {
  194. if x != nil {
  195. return x.Status
  196. }
  197. return 0
  198. }
  199. var File_protos_streams_v1_streams_proto protoreflect.FileDescriptor
  200. var file_protos_streams_v1_streams_proto_rawDesc = []byte{
  201. 0x0a, 0x1f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73,
  202. 0x2f, 0x76, 0x31, 0x2f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  203. 0x6f, 0x12, 0x20, 0x63, 0x6f, 0x6d, 0x2e, 0x64, 0x6f, 0x63, 0x6b, 0x65, 0x72, 0x2e, 0x61, 0x70,
  204. 0x69, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73,
  205. 0x2e, 0x76, 0x31, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74,
  206. 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x6e, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x64,
  207. 0x0a, 0x0c, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x3e,
  208. 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2a, 0x2e, 0x63,
  209. 0x6f, 0x6d, 0x2e, 0x64, 0x6f, 0x63, 0x6b, 0x65, 0x72, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x72,
  210. 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x2e, 0x76, 0x31, 0x2e,
  211. 0x49, 0x4f, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x14,
  212. 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x76,
  213. 0x61, 0x6c, 0x75, 0x65, 0x22, 0x3d, 0x0a, 0x0d, 0x52, 0x65, 0x73, 0x69, 0x7a, 0x65, 0x4d, 0x65,
  214. 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x77, 0x69, 0x64, 0x74, 0x68, 0x18, 0x01,
  215. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x77, 0x69, 0x64, 0x74, 0x68, 0x12, 0x16, 0x0a, 0x06, 0x68,
  216. 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x68, 0x65, 0x69,
  217. 0x67, 0x68, 0x74, 0x22, 0x25, 0x0a, 0x0b, 0x45, 0x78, 0x69, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61,
  218. 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01,
  219. 0x28, 0x0d, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2a, 0x2d, 0x0a, 0x08, 0x49, 0x4f,
  220. 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x12, 0x09, 0x0a, 0x05, 0x53, 0x54, 0x44, 0x49, 0x4e, 0x10,
  221. 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x53, 0x54, 0x44, 0x4f, 0x55, 0x54, 0x10, 0x01, 0x12, 0x0a, 0x0a,
  222. 0x06, 0x53, 0x54, 0x44, 0x45, 0x52, 0x52, 0x10, 0x02, 0x32, 0x48, 0x0a, 0x09, 0x53, 0x74, 0x72,
  223. 0x65, 0x61, 0x6d, 0x69, 0x6e, 0x67, 0x12, 0x3b, 0x0a, 0x09, 0x4e, 0x65, 0x77, 0x53, 0x74, 0x72,
  224. 0x65, 0x61, 0x6d, 0x12, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  225. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x1a, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  226. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x28,
  227. 0x01, 0x30, 0x01, 0x42, 0x2c, 0x5a, 0x2a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f,
  228. 0x6d, 0x2f, 0x64, 0x6f, 0x63, 0x6b, 0x65, 0x72, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x72, 0x6f,
  229. 0x74, 0x6f, 0x73, 0x2f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x76,
  230. 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  231. }
  232. var (
  233. file_protos_streams_v1_streams_proto_rawDescOnce sync.Once
  234. file_protos_streams_v1_streams_proto_rawDescData = file_protos_streams_v1_streams_proto_rawDesc
  235. )
  236. func file_protos_streams_v1_streams_proto_rawDescGZIP() []byte {
  237. file_protos_streams_v1_streams_proto_rawDescOnce.Do(func() {
  238. file_protos_streams_v1_streams_proto_rawDescData = protoimpl.X.CompressGZIP(file_protos_streams_v1_streams_proto_rawDescData)
  239. })
  240. return file_protos_streams_v1_streams_proto_rawDescData
  241. }
  242. var file_protos_streams_v1_streams_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
  243. var file_protos_streams_v1_streams_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
  244. var file_protos_streams_v1_streams_proto_goTypes = []interface{}{
  245. (IOStream)(0), // 0: com.docker.api.protos.streams.v1.IOStream
  246. (*BytesMessage)(nil), // 1: com.docker.api.protos.streams.v1.BytesMessage
  247. (*ResizeMessage)(nil), // 2: com.docker.api.protos.streams.v1.ResizeMessage
  248. (*ExitMessage)(nil), // 3: com.docker.api.protos.streams.v1.ExitMessage
  249. (*any.Any)(nil), // 4: google.protobuf.Any
  250. }
  251. var file_protos_streams_v1_streams_proto_depIdxs = []int32{
  252. 0, // 0: com.docker.api.protos.streams.v1.BytesMessage.type:type_name -> com.docker.api.protos.streams.v1.IOStream
  253. 4, // 1: com.docker.api.protos.streams.v1.Streaming.NewStream:input_type -> google.protobuf.Any
  254. 4, // 2: com.docker.api.protos.streams.v1.Streaming.NewStream:output_type -> google.protobuf.Any
  255. 2, // [2:3] is the sub-list for method output_type
  256. 1, // [1:2] is the sub-list for method input_type
  257. 1, // [1:1] is the sub-list for extension type_name
  258. 1, // [1:1] is the sub-list for extension extendee
  259. 0, // [0:1] is the sub-list for field type_name
  260. }
  261. func init() { file_protos_streams_v1_streams_proto_init() }
  262. func file_protos_streams_v1_streams_proto_init() {
  263. if File_protos_streams_v1_streams_proto != nil {
  264. return
  265. }
  266. if !protoimpl.UnsafeEnabled {
  267. file_protos_streams_v1_streams_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  268. switch v := v.(*BytesMessage); i {
  269. case 0:
  270. return &v.state
  271. case 1:
  272. return &v.sizeCache
  273. case 2:
  274. return &v.unknownFields
  275. default:
  276. return nil
  277. }
  278. }
  279. file_protos_streams_v1_streams_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  280. switch v := v.(*ResizeMessage); i {
  281. case 0:
  282. return &v.state
  283. case 1:
  284. return &v.sizeCache
  285. case 2:
  286. return &v.unknownFields
  287. default:
  288. return nil
  289. }
  290. }
  291. file_protos_streams_v1_streams_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  292. switch v := v.(*ExitMessage); i {
  293. case 0:
  294. return &v.state
  295. case 1:
  296. return &v.sizeCache
  297. case 2:
  298. return &v.unknownFields
  299. default:
  300. return nil
  301. }
  302. }
  303. }
  304. type x struct{}
  305. out := protoimpl.TypeBuilder{
  306. File: protoimpl.DescBuilder{
  307. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  308. RawDescriptor: file_protos_streams_v1_streams_proto_rawDesc,
  309. NumEnums: 1,
  310. NumMessages: 3,
  311. NumExtensions: 0,
  312. NumServices: 1,
  313. },
  314. GoTypes: file_protos_streams_v1_streams_proto_goTypes,
  315. DependencyIndexes: file_protos_streams_v1_streams_proto_depIdxs,
  316. EnumInfos: file_protos_streams_v1_streams_proto_enumTypes,
  317. MessageInfos: file_protos_streams_v1_streams_proto_msgTypes,
  318. }.Build()
  319. File_protos_streams_v1_streams_proto = out.File
  320. file_protos_streams_v1_streams_proto_rawDesc = nil
  321. file_protos_streams_v1_streams_proto_goTypes = nil
  322. file_protos_streams_v1_streams_proto_depIdxs = nil
  323. }
  324. // Reference imports to suppress errors if they are not otherwise used.
  325. var _ context.Context
  326. var _ grpc.ClientConnInterface
  327. // This is a compile-time assertion to ensure that this generated file
  328. // is compatible with the grpc package it is being compiled against.
  329. const _ = grpc.SupportPackageIsVersion6
  330. // StreamingClient is the client API for Streaming service.
  331. //
  332. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  333. type StreamingClient interface {
  334. NewStream(ctx context.Context, opts ...grpc.CallOption) (Streaming_NewStreamClient, error)
  335. }
  336. type streamingClient struct {
  337. cc grpc.ClientConnInterface
  338. }
  339. func NewStreamingClient(cc grpc.ClientConnInterface) StreamingClient {
  340. return &streamingClient{cc}
  341. }
  342. func (c *streamingClient) NewStream(ctx context.Context, opts ...grpc.CallOption) (Streaming_NewStreamClient, error) {
  343. stream, err := c.cc.NewStream(ctx, &_Streaming_serviceDesc.Streams[0], "/com.docker.api.protos.streams.v1.Streaming/NewStream", opts...)
  344. if err != nil {
  345. return nil, err
  346. }
  347. x := &streamingNewStreamClient{stream}
  348. return x, nil
  349. }
  350. type Streaming_NewStreamClient interface {
  351. Send(*any.Any) error
  352. Recv() (*any.Any, error)
  353. grpc.ClientStream
  354. }
  355. type streamingNewStreamClient struct {
  356. grpc.ClientStream
  357. }
  358. func (x *streamingNewStreamClient) Send(m *any.Any) error {
  359. return x.ClientStream.SendMsg(m)
  360. }
  361. func (x *streamingNewStreamClient) Recv() (*any.Any, error) {
  362. m := new(any.Any)
  363. if err := x.ClientStream.RecvMsg(m); err != nil {
  364. return nil, err
  365. }
  366. return m, nil
  367. }
  368. // StreamingServer is the server API for Streaming service.
  369. type StreamingServer interface {
  370. NewStream(Streaming_NewStreamServer) error
  371. }
  372. // UnimplementedStreamingServer can be embedded to have forward compatible implementations.
  373. type UnimplementedStreamingServer struct {
  374. }
  375. func (*UnimplementedStreamingServer) NewStream(Streaming_NewStreamServer) error {
  376. return status.Errorf(codes.Unimplemented, "method NewStream not implemented")
  377. }
  378. func RegisterStreamingServer(s *grpc.Server, srv StreamingServer) {
  379. s.RegisterService(&_Streaming_serviceDesc, srv)
  380. }
  381. func _Streaming_NewStream_Handler(srv interface{}, stream grpc.ServerStream) error {
  382. return srv.(StreamingServer).NewStream(&streamingNewStreamServer{stream})
  383. }
  384. type Streaming_NewStreamServer interface {
  385. Send(*any.Any) error
  386. Recv() (*any.Any, error)
  387. grpc.ServerStream
  388. }
  389. type streamingNewStreamServer struct {
  390. grpc.ServerStream
  391. }
  392. func (x *streamingNewStreamServer) Send(m *any.Any) error {
  393. return x.ServerStream.SendMsg(m)
  394. }
  395. func (x *streamingNewStreamServer) Recv() (*any.Any, error) {
  396. m := new(any.Any)
  397. if err := x.ServerStream.RecvMsg(m); err != nil {
  398. return nil, err
  399. }
  400. return m, nil
  401. }
  402. var _Streaming_serviceDesc = grpc.ServiceDesc{
  403. ServiceName: "com.docker.api.protos.streams.v1.Streaming",
  404. HandlerType: (*StreamingServer)(nil),
  405. Methods: []grpc.MethodDesc{},
  406. Streams: []grpc.StreamDesc{
  407. {
  408. StreamName: "NewStream",
  409. Handler: _Streaming_NewStream_Handler,
  410. ServerStreams: true,
  411. ClientStreams: true,
  412. },
  413. },
  414. Metadata: "protos/streams/v1/streams.proto",
  415. }