示例#1
0
 /// <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, InviteServiceBase serviceImpl)
 {
     serviceBinder.AddMethod(__Method_CreateInvite, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::Improbable.OnlineServices.Proto.Invite.CreateInviteRequest, global::Improbable.OnlineServices.Proto.Invite.CreateInviteResponse>(serviceImpl.CreateInvite));
     serviceBinder.AddMethod(__Method_DeleteInvite, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::Improbable.OnlineServices.Proto.Invite.DeleteInviteRequest, global::Improbable.OnlineServices.Proto.Invite.DeleteInviteResponse>(serviceImpl.DeleteInvite));
     serviceBinder.AddMethod(__Method_UpdateInvite, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::Improbable.OnlineServices.Proto.Invite.UpdateInviteRequest, global::Improbable.OnlineServices.Proto.Invite.UpdateInviteResponse>(serviceImpl.UpdateInvite));
     serviceBinder.AddMethod(__Method_GetInvite, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::Improbable.OnlineServices.Proto.Invite.GetInviteRequest, global::Improbable.OnlineServices.Proto.Invite.GetInviteResponse>(serviceImpl.GetInvite));
     serviceBinder.AddMethod(__Method_ListAllInvites, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::Improbable.OnlineServices.Proto.Invite.ListAllInvitesRequest, global::Improbable.OnlineServices.Proto.Invite.ListAllInvitesResponse>(serviceImpl.ListAllInvites));
 }
示例#2
0
 /// <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(InviteServiceBase serviceImpl)
 {
     return(grpc::ServerServiceDefinition.CreateBuilder()
            .AddMethod(__Method_CreateInvite, serviceImpl.CreateInvite)
            .AddMethod(__Method_DeleteInvite, serviceImpl.DeleteInvite)
            .AddMethod(__Method_UpdateInvite, serviceImpl.UpdateInvite)
            .AddMethod(__Method_GetInvite, serviceImpl.GetInvite)
            .AddMethod(__Method_ListAllInvites, serviceImpl.ListAllInvites).Build());
 }