示例#1
0
     /// <summary>Creates service definition that can be registered with a server</summary>
 #pragma warning disable 0618
     public static ServerServiceDefinition BindService(MetricsServiceBase serviceImpl)
 #pragma warning restore 0618
     {
         return(ServerServiceDefinition.CreateBuilder(__ServiceName)
                .AddMethod(__Method_GetAllGauges, serviceImpl.GetAllGauges)
                .AddMethod(__Method_GetGauge, serviceImpl.GetGauge).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, MetricsServiceBase serviceImpl)
 {
     serviceBinder.AddMethod(__Method_Export, serviceImpl == null ? null : new grpc::DuplexStreamingServerMethod <global::Opencensus.Proto.Agent.Metrics.V1.ExportMetricsServiceRequest, global::Opencensus.Proto.Agent.Metrics.V1.ExportMetricsServiceResponse>(serviceImpl.Export));
 }
 /// <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(MetricsServiceBase serviceImpl)
 {
     return(grpc::ServerServiceDefinition.CreateBuilder()
            .AddMethod(__Method_Export, serviceImpl.Export).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, MetricsServiceBase serviceImpl)
 {
     serviceBinder.AddMethod(__Method_StreamMetrics, serviceImpl == null ? null : new grpc::ClientStreamingServerMethod <global::Envoy.Service.Metrics.V2.StreamMetricsMessage, global::Envoy.Service.Metrics.V2.StreamMetricsResponse>(serviceImpl.StreamMetrics));
 }
示例#5
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(MetricsServiceBase serviceImpl)
 {
     return(grpc::ServerServiceDefinition.CreateBuilder()
            .AddMethod(__Method_GetAllGauges, serviceImpl.GetAllGauges)
            .AddMethod(__Method_GetGauge, serviceImpl.GetGauge).Build());
 }
示例#6
0
 /// <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, MetricsServiceBase serviceImpl)
 {
     serviceBinder.AddMethod(__Method_GetAllGauges, serviceImpl.GetAllGauges);
     serviceBinder.AddMethod(__Method_GetGauge, serviceImpl.GetGauge);
 }
示例#7
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, MetricsServiceBase serviceImpl)
 {
     serviceBinder.AddMethod(__Method_GetAllGauges, serviceImpl == null ? null : new grpc::ServerStreamingServerMethod <global::Grpc.Testing.EmptyMessage, global::Grpc.Testing.GaugeResponse>(serviceImpl.GetAllGauges));
     serviceBinder.AddMethod(__Method_GetGauge, serviceImpl == null ? null : new grpc::UnaryServerMethod <global::Grpc.Testing.GaugeRequest, global::Grpc.Testing.GaugeResponse>(serviceImpl.GetGauge));
 }