205
206
// DeleteWorkflowExecution mocks base method.
207
>
func (m *MockHistoryServiceClient) DeleteWorkflowExecution(ctx context.Context, in *historyservice.DeleteWorkflowExecutionRequest, opts ...grpc.CallOption) (*historyservice.DeleteWorkflowExecutionResponse, error) {
service_grpc.pb.mock.go
208
>
m.ctrl.T.Helper()
209
>
varargs := []any{ctx, in}
210
>
for _, a := range opts {
211
varargs = append(varargs, a)
212
}
214
>
ret0, _ := ret[0].(*historyservice.DeleteWorkflowExecutionResponse)
215
>
ret1, _ := ret[1].(error)
216
>
return ret0, ret1
217
}
218
219
// DeleteWorkflowExecution indicates an expected call of DeleteWorkflowExecution.
220
>
func (mr *MockHistoryServiceClientMockRecorder) DeleteWorkflowExecution(ctx, in any, opts ...any) *gomock.Call {
service_grpc.pb.mock.go
221
>
mr.mock.ctrl.T.Helper()
222
>
varargs := append([]any{ctx, in}, opts...)
223
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteWorkflowExecution", reflect.TypeOf((*MockHistoryServiceClient)(nil).DeleteWorkflowExecution), varargs...)
224
>
}
225
226
// DeleteWorkflowVisibilityRecord mocks base method.