Source code for feast_spark.third_party.grpc.health.v1.HealthService_pb2_grpc

# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
"""Client and server classes corresponding to protobuf-defined services."""
import grpc

from feast_spark.third_party.grpc.health.v1 import HealthService_pb2 as feast__spark_dot_third__party_dot_grpc_dot_health_dot_v1_dot_HealthService__pb2


[docs]class HealthStub(object): """Missing associated documentation comment in .proto file.""" def __init__(self, channel): """Constructor. Args: channel: A grpc.Channel. """ self.Check = channel.unary_unary( '/grpc.health.v1.Health/Check', request_serializer=feast__spark_dot_third__party_dot_grpc_dot_health_dot_v1_dot_HealthService__pb2.HealthCheckRequest.SerializeToString, response_deserializer=feast__spark_dot_third__party_dot_grpc_dot_health_dot_v1_dot_HealthService__pb2.HealthCheckResponse.FromString, )
[docs]class HealthServicer(object): """Missing associated documentation comment in .proto file."""
[docs] def Check(self, request, context): """Missing associated documentation comment in .proto file.""" context.set_code(grpc.StatusCode.UNIMPLEMENTED) context.set_details('Method not implemented!') raise NotImplementedError('Method not implemented!')
[docs]def add_HealthServicer_to_server(servicer, server): rpc_method_handlers = { 'Check': grpc.unary_unary_rpc_method_handler( servicer.Check, request_deserializer=feast__spark_dot_third__party_dot_grpc_dot_health_dot_v1_dot_HealthService__pb2.HealthCheckRequest.FromString, response_serializer=feast__spark_dot_third__party_dot_grpc_dot_health_dot_v1_dot_HealthService__pb2.HealthCheckResponse.SerializeToString, ), } generic_handler = grpc.method_handlers_generic_handler( 'grpc.health.v1.Health', rpc_method_handlers) server.add_generic_rpc_handlers((generic_handler,))
# This class is part of an EXPERIMENTAL API.
[docs]class Health(object): """Missing associated documentation comment in .proto file."""
[docs] @staticmethod def Check(request, target, options=(), channel_credentials=None, call_credentials=None, insecure=False, compression=None, wait_for_ready=None, timeout=None, metadata=None): return grpc.experimental.unary_unary(request, target, '/grpc.health.v1.Health/Check', feast__spark_dot_third__party_dot_grpc_dot_health_dot_v1_dot_HealthService__pb2.HealthCheckRequest.SerializeToString, feast__spark_dot_third__party_dot_grpc_dot_health_dot_v1_dot_HealthService__pb2.HealthCheckResponse.FromString, options, channel_credentials, insecure, call_credentials, compression, wait_for_ready, timeout, metadata)