/// <summary>Creates service definition that can be registered with a server</summary> /// <param name="serviceImpl">An object implementing the server-side handling logic.</param> public static grpc::ServerServiceDefinition BindService(BookServiceBase serviceImpl) { return(grpc::ServerServiceDefinition.CreateBuilder() .AddMethod(__Method_GetBook, serviceImpl.GetBook) .AddMethod(__Method_QueryBooks, serviceImpl.QueryBooks).Build()); }
/// <summary>Register service method with a service binder with or without implementation. Useful when customizing the service binding logic. /// Note: this method is part of an experimental API that can change or be removed without any prior notice.</summary> /// <param name="serviceBinder">Service methods will be bound by calling <c>AddMethod</c> on this object.</param> /// <param name="serviceImpl">An object implementing the server-side handling logic.</param> public static void BindService(grpc::ServiceBinderBase serviceBinder, BookServiceBase serviceImpl) { serviceBinder.AddMethod(__Method_GetBook, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::GrpcServiceDemo.GetBookRequest, global::GrpcServiceDemo.Book>(serviceImpl.GetBook)); serviceBinder.AddMethod(__Method_QueryBooks, serviceImpl == null ? null : new grpc::ServerStreamingServerMethod <global::GrpcServiceDemo.QueryBooksRequest, global::GrpcServiceDemo.Book>(serviceImpl.QueryBooks)); }
/// <summary>Register service method implementations with a service binder. Useful when customizing the service binding logic. /// Note: this method is part of an experimental API that can change or be removed without any prior notice.</summary> /// <param name="serviceBinder">Service methods will be bound by calling <c>AddMethod</c> on this object.</param> /// <param name="serviceImpl">An object implementing the server-side handling logic.</param> public static void BindService(grpc::ServiceBinderBase serviceBinder, BookServiceBase serviceImpl) { serviceBinder.AddMethod(__Method_GetBookById, serviceImpl.GetBookById); }