-
Notifications
You must be signed in to change notification settings - Fork 651
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4289fc4
commit ab0c2ff
Showing
60 changed files
with
480 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
121 changes: 120 additions & 1 deletion
121
packages/grpc-health-check/src/generated/grpc/health/v1/Health.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,129 @@ | ||
// Original file: proto/health/v1/health.proto | ||
|
||
import type * as grpc from '@grpc/grpc-js' | ||
import type { MethodDefinition } from '@grpc/proto-loader' | ||
import type { HealthCheckRequest as _grpc_health_v1_HealthCheckRequest, HealthCheckRequest__Output as _grpc_health_v1_HealthCheckRequest__Output } from '../../../grpc/health/v1/HealthCheckRequest'; | ||
import type { HealthCheckResponse as _grpc_health_v1_HealthCheckResponse, HealthCheckResponse__Output as _grpc_health_v1_HealthCheckResponse__Output } from '../../../grpc/health/v1/HealthCheckResponse'; | ||
|
||
export interface HealthDefinition { | ||
/** | ||
* Health is gRPC's mechanism for checking whether a server is able to handle | ||
* RPCs. Its semantics are documented in | ||
* https://github.com/grpc/grpc/blob/master/doc/health-checking.md. | ||
*/ | ||
export interface HealthClient extends grpc.ServiceClient { | ||
/** | ||
* Check gets the health of the specified service. If the requested service | ||
* is unknown, the call will fail with status NOT_FOUND. If the caller does | ||
* not specify a service name, the server should respond with its overall | ||
* health status. | ||
* | ||
* Clients should set a deadline when calling Check, and can declare the | ||
* server unhealthy if they do not receive a timely response. | ||
* | ||
* Check implementations should be idempotent and side effect free. | ||
*/ | ||
Check(argument: _grpc_health_v1_HealthCheckRequest, metadata: grpc.Metadata, options: grpc.CallOptions, callback: grpc.requestCallback<_grpc_health_v1_HealthCheckResponse__Output>): grpc.ClientUnaryCall; | ||
Check(argument: _grpc_health_v1_HealthCheckRequest, metadata: grpc.Metadata, callback: grpc.requestCallback<_grpc_health_v1_HealthCheckResponse__Output>): grpc.ClientUnaryCall; | ||
Check(argument: _grpc_health_v1_HealthCheckRequest, options: grpc.CallOptions, callback: grpc.requestCallback<_grpc_health_v1_HealthCheckResponse__Output>): grpc.ClientUnaryCall; | ||
Check(argument: _grpc_health_v1_HealthCheckRequest, callback: grpc.requestCallback<_grpc_health_v1_HealthCheckResponse__Output>): grpc.ClientUnaryCall; | ||
/** | ||
* Check gets the health of the specified service. If the requested service | ||
* is unknown, the call will fail with status NOT_FOUND. If the caller does | ||
* not specify a service name, the server should respond with its overall | ||
* health status. | ||
* | ||
* Clients should set a deadline when calling Check, and can declare the | ||
* server unhealthy if they do not receive a timely response. | ||
* | ||
* Check implementations should be idempotent and side effect free. | ||
*/ | ||
check(argument: _grpc_health_v1_HealthCheckRequest, metadata: grpc.Metadata, options: grpc.CallOptions, callback: grpc.requestCallback<_grpc_health_v1_HealthCheckResponse__Output>): grpc.ClientUnaryCall; | ||
check(argument: _grpc_health_v1_HealthCheckRequest, metadata: grpc.Metadata, callback: grpc.requestCallback<_grpc_health_v1_HealthCheckResponse__Output>): grpc.ClientUnaryCall; | ||
check(argument: _grpc_health_v1_HealthCheckRequest, options: grpc.CallOptions, callback: grpc.requestCallback<_grpc_health_v1_HealthCheckResponse__Output>): grpc.ClientUnaryCall; | ||
check(argument: _grpc_health_v1_HealthCheckRequest, callback: grpc.requestCallback<_grpc_health_v1_HealthCheckResponse__Output>): grpc.ClientUnaryCall; | ||
|
||
/** | ||
* Performs a watch for the serving status of the requested service. | ||
* The server will immediately send back a message indicating the current | ||
* serving status. It will then subsequently send a new message whenever | ||
* the service's serving status changes. | ||
* | ||
* If the requested service is unknown when the call is received, the | ||
* server will send a message setting the serving status to | ||
* SERVICE_UNKNOWN but will *not* terminate the call. If at some | ||
* future point, the serving status of the service becomes known, the | ||
* server will send a new message with the service's serving status. | ||
* | ||
* If the call terminates with status UNIMPLEMENTED, then clients | ||
* should assume this method is not supported and should not retry the | ||
* call. If the call terminates with any other status (including OK), | ||
* clients should retry the call with appropriate exponential backoff. | ||
*/ | ||
Watch(argument: _grpc_health_v1_HealthCheckRequest, metadata: grpc.Metadata, options?: grpc.CallOptions): grpc.ClientReadableStream<_grpc_health_v1_HealthCheckResponse__Output>; | ||
Watch(argument: _grpc_health_v1_HealthCheckRequest, options?: grpc.CallOptions): grpc.ClientReadableStream<_grpc_health_v1_HealthCheckResponse__Output>; | ||
/** | ||
* Performs a watch for the serving status of the requested service. | ||
* The server will immediately send back a message indicating the current | ||
* serving status. It will then subsequently send a new message whenever | ||
* the service's serving status changes. | ||
* | ||
* If the requested service is unknown when the call is received, the | ||
* server will send a message setting the serving status to | ||
* SERVICE_UNKNOWN but will *not* terminate the call. If at some | ||
* future point, the serving status of the service becomes known, the | ||
* server will send a new message with the service's serving status. | ||
* | ||
* If the call terminates with status UNIMPLEMENTED, then clients | ||
* should assume this method is not supported and should not retry the | ||
* call. If the call terminates with any other status (including OK), | ||
* clients should retry the call with appropriate exponential backoff. | ||
*/ | ||
watch(argument: _grpc_health_v1_HealthCheckRequest, metadata: grpc.Metadata, options?: grpc.CallOptions): grpc.ClientReadableStream<_grpc_health_v1_HealthCheckResponse__Output>; | ||
watch(argument: _grpc_health_v1_HealthCheckRequest, options?: grpc.CallOptions): grpc.ClientReadableStream<_grpc_health_v1_HealthCheckResponse__Output>; | ||
|
||
} | ||
|
||
/** | ||
* Health is gRPC's mechanism for checking whether a server is able to handle | ||
* RPCs. Its semantics are documented in | ||
* https://github.com/grpc/grpc/blob/master/doc/health-checking.md. | ||
*/ | ||
export interface HealthHandlers extends grpc.UntypedServiceImplementation { | ||
/** | ||
* Check gets the health of the specified service. If the requested service | ||
* is unknown, the call will fail with status NOT_FOUND. If the caller does | ||
* not specify a service name, the server should respond with its overall | ||
* health status. | ||
* | ||
* Clients should set a deadline when calling Check, and can declare the | ||
* server unhealthy if they do not receive a timely response. | ||
* | ||
* Check implementations should be idempotent and side effect free. | ||
*/ | ||
Check: grpc.handleUnaryCall<_grpc_health_v1_HealthCheckRequest__Output, _grpc_health_v1_HealthCheckResponse>; | ||
|
||
/** | ||
* Performs a watch for the serving status of the requested service. | ||
* The server will immediately send back a message indicating the current | ||
* serving status. It will then subsequently send a new message whenever | ||
* the service's serving status changes. | ||
* | ||
* If the requested service is unknown when the call is received, the | ||
* server will send a message setting the serving status to | ||
* SERVICE_UNKNOWN but will *not* terminate the call. If at some | ||
* future point, the serving status of the service becomes known, the | ||
* server will send a new message with the service's serving status. | ||
* | ||
* If the call terminates with status UNIMPLEMENTED, then clients | ||
* should assume this method is not supported and should not retry the | ||
* call. If the call terminates with any other status (including OK), | ||
* clients should retry the call with appropriate exponential backoff. | ||
*/ | ||
Watch: grpc.handleServerStreamingCall<_grpc_health_v1_HealthCheckRequest__Output, _grpc_health_v1_HealthCheckResponse>; | ||
|
||
} | ||
|
||
export interface HealthDefinition extends grpc.ServiceDefinition { | ||
Check: MethodDefinition<_grpc_health_v1_HealthCheckRequest, _grpc_health_v1_HealthCheckResponse, _grpc_health_v1_HealthCheckRequest__Output, _grpc_health_v1_HealthCheckResponse__Output> | ||
Watch: MethodDefinition<_grpc_health_v1_HealthCheckRequest, _grpc_health_v1_HealthCheckResponse, _grpc_health_v1_HealthCheckRequest__Output, _grpc_health_v1_HealthCheckResponse__Output> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import type * as grpc from '@grpc/grpc-js'; | ||
import type { MessageTypeDefinition } from '@grpc/proto-loader'; | ||
|
||
import type { HealthClient as _grpc_health_v1_HealthClient, HealthDefinition as _grpc_health_v1_HealthDefinition } from './grpc/health/v1/Health'; | ||
|
||
type SubtypeConstructor<Subtype extends grpc.ServiceClient> = { | ||
new (address: string, credentials: grpc.ChannelCredentials, options?: Partial<grpc.ChannelOptions>): Subtype; | ||
} & grpc.ServiceClientConstructor; | ||
|
||
export interface ProtoGrpcType extends grpc.GrpcObject { | ||
grpc: { | ||
health: { | ||
v1: { | ||
/** | ||
* Health is gRPC's mechanism for checking whether a server is able to handle | ||
* RPCs. Its semantics are documented in | ||
* https://github.com/grpc/grpc/blob/master/doc/health-checking.md. | ||
*/ | ||
Health: SubtypeConstructor<_grpc_health_v1_HealthClient> & { service: _grpc_health_v1_HealthDefinition } | ||
HealthCheckRequest: MessageTypeDefinition | ||
HealthCheckResponse: MessageTypeDefinition | ||
} | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.