@@ -19,6 +19,9 @@ interface IDaprService extends grpc.ServiceDefinition<grpc.UntypedServiceImpleme
19
19
publishEvent : IDaprService_IPublishEvent ;
20
20
invokeBinding : IDaprService_IInvokeBinding ;
21
21
getSecret : IDaprService_IGetSecret ;
22
+ registerActorTimer : IDaprService_IRegisterActorTimer ;
23
+ unregisterActorTimer : IDaprService_IUnregisterActorTimer ;
24
+ invokeActor : IDaprService_IInvokeActor ;
22
25
}
23
26
24
27
interface IDaprService_IInvokeService extends grpc . MethodDefinition < dapr_proto_runtime_v1_dapr_pb . InvokeServiceRequest , dapr_proto_common_v1_common_pb . InvokeResponse > {
@@ -102,6 +105,33 @@ interface IDaprService_IGetSecret extends grpc.MethodDefinition<dapr_proto_runti
102
105
responseSerialize : grpc . serialize < dapr_proto_runtime_v1_dapr_pb . GetSecretResponse > ;
103
106
responseDeserialize : grpc . deserialize < dapr_proto_runtime_v1_dapr_pb . GetSecretResponse > ;
104
107
}
108
+ interface IDaprService_IRegisterActorTimer extends grpc . MethodDefinition < dapr_proto_runtime_v1_dapr_pb . RegisterActorTimerRequest , google_protobuf_empty_pb . Empty > {
109
+ path : "/dapr.proto.runtime.v1.Dapr/RegisterActorTimer" ;
110
+ requestStream : false ;
111
+ responseStream : false ;
112
+ requestSerialize : grpc . serialize < dapr_proto_runtime_v1_dapr_pb . RegisterActorTimerRequest > ;
113
+ requestDeserialize : grpc . deserialize < dapr_proto_runtime_v1_dapr_pb . RegisterActorTimerRequest > ;
114
+ responseSerialize : grpc . serialize < google_protobuf_empty_pb . Empty > ;
115
+ responseDeserialize : grpc . deserialize < google_protobuf_empty_pb . Empty > ;
116
+ }
117
+ interface IDaprService_IUnregisterActorTimer extends grpc . MethodDefinition < dapr_proto_runtime_v1_dapr_pb . UnregisterActorTimerRequest , google_protobuf_empty_pb . Empty > {
118
+ path : "/dapr.proto.runtime.v1.Dapr/UnregisterActorTimer" ;
119
+ requestStream : false ;
120
+ responseStream : false ;
121
+ requestSerialize : grpc . serialize < dapr_proto_runtime_v1_dapr_pb . UnregisterActorTimerRequest > ;
122
+ requestDeserialize : grpc . deserialize < dapr_proto_runtime_v1_dapr_pb . UnregisterActorTimerRequest > ;
123
+ responseSerialize : grpc . serialize < google_protobuf_empty_pb . Empty > ;
124
+ responseDeserialize : grpc . deserialize < google_protobuf_empty_pb . Empty > ;
125
+ }
126
+ interface IDaprService_IInvokeActor extends grpc . MethodDefinition < dapr_proto_runtime_v1_dapr_pb . InvokeActorRequest , dapr_proto_runtime_v1_dapr_pb . InvokeActorResponse > {
127
+ path : "/dapr.proto.runtime.v1.Dapr/InvokeActor" ;
128
+ requestStream : false ;
129
+ responseStream : false ;
130
+ requestSerialize : grpc . serialize < dapr_proto_runtime_v1_dapr_pb . InvokeActorRequest > ;
131
+ requestDeserialize : grpc . deserialize < dapr_proto_runtime_v1_dapr_pb . InvokeActorRequest > ;
132
+ responseSerialize : grpc . serialize < dapr_proto_runtime_v1_dapr_pb . InvokeActorResponse > ;
133
+ responseDeserialize : grpc . deserialize < dapr_proto_runtime_v1_dapr_pb . InvokeActorResponse > ;
134
+ }
105
135
106
136
export const DaprService : IDaprService ;
107
137
@@ -115,6 +145,9 @@ export interface IDaprServer {
115
145
publishEvent : grpc . handleUnaryCall < dapr_proto_runtime_v1_dapr_pb . PublishEventRequest , google_protobuf_empty_pb . Empty > ;
116
146
invokeBinding : grpc . handleUnaryCall < dapr_proto_runtime_v1_dapr_pb . InvokeBindingRequest , dapr_proto_runtime_v1_dapr_pb . InvokeBindingResponse > ;
117
147
getSecret : grpc . handleUnaryCall < dapr_proto_runtime_v1_dapr_pb . GetSecretRequest , dapr_proto_runtime_v1_dapr_pb . GetSecretResponse > ;
148
+ registerActorTimer : grpc . handleUnaryCall < dapr_proto_runtime_v1_dapr_pb . RegisterActorTimerRequest , google_protobuf_empty_pb . Empty > ;
149
+ unregisterActorTimer : grpc . handleUnaryCall < dapr_proto_runtime_v1_dapr_pb . UnregisterActorTimerRequest , google_protobuf_empty_pb . Empty > ;
150
+ invokeActor : grpc . handleUnaryCall < dapr_proto_runtime_v1_dapr_pb . InvokeActorRequest , dapr_proto_runtime_v1_dapr_pb . InvokeActorResponse > ;
118
151
}
119
152
120
153
export interface IDaprClient {
@@ -145,6 +178,15 @@ export interface IDaprClient {
145
178
getSecret ( request : dapr_proto_runtime_v1_dapr_pb . GetSecretRequest , callback : ( error : grpc . ServiceError | null , response : dapr_proto_runtime_v1_dapr_pb . GetSecretResponse ) => void ) : grpc . ClientUnaryCall ;
146
179
getSecret ( request : dapr_proto_runtime_v1_dapr_pb . GetSecretRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : dapr_proto_runtime_v1_dapr_pb . GetSecretResponse ) => void ) : grpc . ClientUnaryCall ;
147
180
getSecret ( request : dapr_proto_runtime_v1_dapr_pb . GetSecretRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : dapr_proto_runtime_v1_dapr_pb . GetSecretResponse ) => void ) : grpc . ClientUnaryCall ;
181
+ registerActorTimer ( request : dapr_proto_runtime_v1_dapr_pb . RegisterActorTimerRequest , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
182
+ registerActorTimer ( request : dapr_proto_runtime_v1_dapr_pb . RegisterActorTimerRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
183
+ registerActorTimer ( request : dapr_proto_runtime_v1_dapr_pb . RegisterActorTimerRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
184
+ unregisterActorTimer ( request : dapr_proto_runtime_v1_dapr_pb . UnregisterActorTimerRequest , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
185
+ unregisterActorTimer ( request : dapr_proto_runtime_v1_dapr_pb . UnregisterActorTimerRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
186
+ unregisterActorTimer ( request : dapr_proto_runtime_v1_dapr_pb . UnregisterActorTimerRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
187
+ invokeActor ( request : dapr_proto_runtime_v1_dapr_pb . InvokeActorRequest , callback : ( error : grpc . ServiceError | null , response : dapr_proto_runtime_v1_dapr_pb . InvokeActorResponse ) => void ) : grpc . ClientUnaryCall ;
188
+ invokeActor ( request : dapr_proto_runtime_v1_dapr_pb . InvokeActorRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : dapr_proto_runtime_v1_dapr_pb . InvokeActorResponse ) => void ) : grpc . ClientUnaryCall ;
189
+ invokeActor ( request : dapr_proto_runtime_v1_dapr_pb . InvokeActorRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : dapr_proto_runtime_v1_dapr_pb . InvokeActorResponse ) => void ) : grpc . ClientUnaryCall ;
148
190
}
149
191
150
192
export class DaprClient extends grpc . Client implements IDaprClient {
@@ -176,4 +218,13 @@ export class DaprClient extends grpc.Client implements IDaprClient {
176
218
public getSecret ( request : dapr_proto_runtime_v1_dapr_pb . GetSecretRequest , callback : ( error : grpc . ServiceError | null , response : dapr_proto_runtime_v1_dapr_pb . GetSecretResponse ) => void ) : grpc . ClientUnaryCall ;
177
219
public getSecret ( request : dapr_proto_runtime_v1_dapr_pb . GetSecretRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : dapr_proto_runtime_v1_dapr_pb . GetSecretResponse ) => void ) : grpc . ClientUnaryCall ;
178
220
public getSecret ( request : dapr_proto_runtime_v1_dapr_pb . GetSecretRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : dapr_proto_runtime_v1_dapr_pb . GetSecretResponse ) => void ) : grpc . ClientUnaryCall ;
221
+ public registerActorTimer ( request : dapr_proto_runtime_v1_dapr_pb . RegisterActorTimerRequest , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
222
+ public registerActorTimer ( request : dapr_proto_runtime_v1_dapr_pb . RegisterActorTimerRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
223
+ public registerActorTimer ( request : dapr_proto_runtime_v1_dapr_pb . RegisterActorTimerRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
224
+ public unregisterActorTimer ( request : dapr_proto_runtime_v1_dapr_pb . UnregisterActorTimerRequest , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
225
+ public unregisterActorTimer ( request : dapr_proto_runtime_v1_dapr_pb . UnregisterActorTimerRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
226
+ public unregisterActorTimer ( request : dapr_proto_runtime_v1_dapr_pb . UnregisterActorTimerRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
227
+ public invokeActor ( request : dapr_proto_runtime_v1_dapr_pb . InvokeActorRequest , callback : ( error : grpc . ServiceError | null , response : dapr_proto_runtime_v1_dapr_pb . InvokeActorResponse ) => void ) : grpc . ClientUnaryCall ;
228
+ public invokeActor ( request : dapr_proto_runtime_v1_dapr_pb . InvokeActorRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : dapr_proto_runtime_v1_dapr_pb . InvokeActorResponse ) => void ) : grpc . ClientUnaryCall ;
229
+ public invokeActor ( request : dapr_proto_runtime_v1_dapr_pb . InvokeActorRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : dapr_proto_runtime_v1_dapr_pb . InvokeActorResponse ) => void ) : grpc . ClientUnaryCall ;
179
230
}
0 commit comments