api/proto/catalog_grpc.pb.go (104 lines of code) (raw):

// // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF licenses this file to You under the Apache License, Version 2.0 // (the "License"); you may not use this file except in compliance with // the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.2.0 // - protoc v3.17.3 // source: catalog.proto package proto import ( context "context" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" ) // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. // Requires gRPC-Go v1.32.0 or later. const _ = grpc.SupportPackageIsVersion7 // CatalogClient is the client API for Catalog service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. type CatalogClient interface { Registry(ctx context.Context, in *RegistryRequest, opts ...grpc.CallOption) (*RegistryResponse, error) QueryOperations(ctx context.Context, in *QueryOperationsRequest, opts ...grpc.CallOption) (*QueryOperationsResponse, error) } type catalogClient struct { cc grpc.ClientConnInterface } func NewCatalogClient(cc grpc.ClientConnInterface) CatalogClient { return &catalogClient{cc} } func (c *catalogClient) Registry(ctx context.Context, in *RegistryRequest, opts ...grpc.CallOption) (*RegistryResponse, error) { out := new(RegistryResponse) err := c.cc.Invoke(ctx, "/eventmesh.catalog.api.protocol.Catalog/Registry", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *catalogClient) QueryOperations(ctx context.Context, in *QueryOperationsRequest, opts ...grpc.CallOption) (*QueryOperationsResponse, error) { out := new(QueryOperationsResponse) err := c.cc.Invoke(ctx, "/eventmesh.catalog.api.protocol.Catalog/QueryOperations", in, out, opts...) if err != nil { return nil, err } return out, nil } // CatalogServer is the server API for Catalog service. // All implementations must embed UnimplementedCatalogServer // for forward compatibility type CatalogServer interface { Registry(context.Context, *RegistryRequest) (*RegistryResponse, error) QueryOperations(context.Context, *QueryOperationsRequest) (*QueryOperationsResponse, error) mustEmbedUnimplementedCatalogServer() } // UnimplementedCatalogServer must be embedded to have forward compatible implementations. type UnimplementedCatalogServer struct { } func (UnimplementedCatalogServer) Registry(context.Context, *RegistryRequest) (*RegistryResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method Registry not implemented") } func (UnimplementedCatalogServer) QueryOperations(context.Context, *QueryOperationsRequest) (*QueryOperationsResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method QueryOperations not implemented") } func (UnimplementedCatalogServer) mustEmbedUnimplementedCatalogServer() {} // UnsafeCatalogServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to CatalogServer will // result in compilation errors. type UnsafeCatalogServer interface { mustEmbedUnimplementedCatalogServer() } func RegisterCatalogServer(s grpc.ServiceRegistrar, srv CatalogServer) { s.RegisterService(&Catalog_ServiceDesc, srv) } func _Catalog_Registry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(RegistryRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(CatalogServer).Registry(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/eventmesh.catalog.api.protocol.Catalog/Registry", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(CatalogServer).Registry(ctx, req.(*RegistryRequest)) } return interceptor(ctx, in, info, handler) } func _Catalog_QueryOperations_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(QueryOperationsRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(CatalogServer).QueryOperations(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/eventmesh.catalog.api.protocol.Catalog/QueryOperations", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(CatalogServer).QueryOperations(ctx, req.(*QueryOperationsRequest)) } return interceptor(ctx, in, info, handler) } // Catalog_ServiceDesc is the grpc.ServiceDesc for Catalog service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var Catalog_ServiceDesc = grpc.ServiceDesc{ ServiceName: "eventmesh.catalog.api.protocol.Catalog", HandlerType: (*CatalogServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "Registry", Handler: _Catalog_Registry_Handler, }, { MethodName: "QueryOperations", Handler: _Catalog_QueryOperations_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "catalog.proto", }