forked from cadence-workflow/cadence-java-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestActivityEnvironmentInternal.java
More file actions
1039 lines (904 loc) · 39.3 KB
/
Copy pathTestActivityEnvironmentInternal.java
File metadata and controls
1039 lines (904 loc) · 39.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Modifications copyright (C) 2017 Uber Technologies, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not
* use this file except in compliance with the License. A copy of the License is
* located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.uber.cadence.internal.sync;
import com.google.common.base.Defaults;
import com.uber.cadence.*;
import com.uber.cadence.GetTaskListsByDomainRequest;
import com.uber.cadence.GetTaskListsByDomainResponse;
import com.uber.cadence.activity.ActivityOptions;
import com.uber.cadence.activity.LocalActivityOptions;
import com.uber.cadence.internal.metrics.NoopScope;
import com.uber.cadence.internal.worker.ActivityTaskHandler;
import com.uber.cadence.internal.worker.ActivityTaskHandler.Result;
import com.uber.cadence.serviceclient.ClientOptions;
import com.uber.cadence.serviceclient.IWorkflowService;
import com.uber.cadence.testing.TestActivityEnvironment;
import com.uber.cadence.testing.TestEnvironmentOptions;
import com.uber.cadence.workflow.*;
import com.uber.cadence.workflow.Functions.Func;
import com.uber.cadence.workflow.Functions.Func1;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Proxy;
import java.lang.reflect.Type;
import java.nio.charset.StandardCharsets;
import java.time.Duration;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.Random;
import java.util.UUID;
import java.util.concurrent.CancellationException;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.function.BiPredicate;
import java.util.function.Consumer;
import java.util.function.Supplier;
import org.apache.thrift.TException;
import org.apache.thrift.async.AsyncMethodCallback;
public final class TestActivityEnvironmentInternal implements TestActivityEnvironment {
private final POJOActivityTaskHandler activityTaskHandler;
private final TestEnvironmentOptions testEnvironmentOptions;
private final AtomicInteger idSequencer = new AtomicInteger();
private ClassConsumerPair<Object> activityHeartbetListener;
private static final ScheduledExecutorService heartbeatExecutor =
Executors.newScheduledThreadPool(20);
private IWorkflowService workflowService;
public TestActivityEnvironmentInternal(TestEnvironmentOptions options) {
if (options == null) {
this.testEnvironmentOptions = new TestEnvironmentOptions.Builder().build();
} else {
this.testEnvironmentOptions = options;
}
activityTaskHandler =
new POJOActivityTaskHandler(
new WorkflowServiceWrapper(workflowService),
testEnvironmentOptions.getWorkflowClientOptions().getDomain(),
testEnvironmentOptions.getDataConverter(),
heartbeatExecutor);
}
/**
* Register activity implementation objects with a worker. Overwrites previously registered
* objects. As activities are reentrant and stateless only one instance per activity type is
* registered.
*
* <p>Implementations that share a worker must implement different interfaces as an activity type
* is identified by the activity interface, not by the implementation.
*
* <p>
*/
@Override
public void registerActivitiesImplementations(Object... activityImplementations) {
activityTaskHandler.setActivitiesImplementation(activityImplementations);
}
/**
* Creates client stub to activities that implement given interface.
*
* @param activityInterface interface type implemented by activities
*/
@Override
public <T> T newActivityStub(Class<T> activityInterface) {
ActivityOptions options =
new ActivityOptions.Builder().setScheduleToCloseTimeout(Duration.ofDays(1)).build();
InvocationHandler invocationHandler =
ActivityInvocationHandler.newInstance(
options, new TestActivityExecutor(workflowService, null));
invocationHandler = new DeterministicRunnerWrapper(invocationHandler);
return ActivityInvocationHandlerBase.newProxy(activityInterface, invocationHandler);
}
@Override
public <T> void setActivityHeartbeatListener(Class<T> detailsClass, Consumer<T> listener) {
setActivityHeartbeatListener(detailsClass, detailsClass, listener);
}
@Override
@SuppressWarnings("unchecked")
public <T> void setActivityHeartbeatListener(
Class<T> detailsClass, Type detailsType, Consumer<T> listener) {
activityHeartbetListener = new ClassConsumerPair(detailsClass, detailsType, listener);
}
@Override
public void setWorkflowService(IWorkflowService workflowService) {
IWorkflowService service = new WorkflowServiceWrapper(workflowService);
this.workflowService = service;
this.activityTaskHandler.setWorkflowService(service);
}
private class TestActivityExecutor extends WorkflowInterceptorBase {
@SuppressWarnings("UnusedVariable")
private final IWorkflowService workflowService;
TestActivityExecutor(IWorkflowService workflowService, WorkflowInterceptorBase next) {
super(next);
this.workflowService = workflowService;
}
@Override
public <T> Promise<T> executeActivity(
String activityType,
Class<T> resultClass,
Type resultType,
Object[] args,
ActivityOptions options) {
PollForActivityTaskResponse task = new PollForActivityTaskResponse();
task.setScheduleToCloseTimeoutSeconds((int) options.getScheduleToCloseTimeout().getSeconds());
task.setHeartbeatTimeoutSeconds((int) options.getHeartbeatTimeout().getSeconds());
task.setStartToCloseTimeoutSeconds((int) options.getStartToCloseTimeout().getSeconds());
task.setScheduledTimestamp(Duration.ofMillis(System.currentTimeMillis()).toNanos());
task.setStartedTimestamp(Duration.ofMillis(System.currentTimeMillis()).toNanos());
task.setInput(testEnvironmentOptions.getDataConverter().toData(args));
task.setTaskToken("test-task-token".getBytes(StandardCharsets.UTF_8));
task.setActivityId(String.valueOf(idSequencer.incrementAndGet()));
task.setWorkflowExecution(
new WorkflowExecution()
.setWorkflowId("test-workflow-id")
.setRunId(UUID.randomUUID().toString()));
task.setWorkflowType(new WorkflowType().setName("test-workflow"));
task.setActivityType(new ActivityType().setName(activityType));
Result taskResult = activityTaskHandler.handle(task, NoopScope.getInstance(), false);
return Workflow.newPromise(getReply(task, taskResult, resultClass, resultType));
}
@Override
public <R> Promise<R> executeLocalActivity(
String activityName,
Class<R> resultClass,
Type resultType,
Object[] args,
LocalActivityOptions options) {
throw new UnsupportedOperationException("not implemented");
}
@Override
public <R> WorkflowResult<R> executeChildWorkflow(
String workflowType,
Class<R> resultClass,
Type resultType,
Object[] args,
ChildWorkflowOptions options) {
throw new UnsupportedOperationException("not implemented");
}
@Override
public Random newRandom() {
throw new UnsupportedOperationException("not implemented");
}
@Override
public Promise<Void> signalExternalWorkflow(
String domain, WorkflowExecution execution, String signalName, Object[] args) {
throw new UnsupportedOperationException("not implemented");
}
@Override
public Promise<Void> signalExternalWorkflow(
WorkflowExecution execution, String signalName, Object[] args) {
throw new UnsupportedOperationException("not implemented");
}
@Override
public Promise<Void> cancelWorkflow(WorkflowExecution execution) {
throw new UnsupportedOperationException("not implemented");
}
@Override
public void sleep(Duration duration) {
throw new UnsupportedOperationException("not implemented");
}
@Override
public boolean await(Duration timeout, String reason, Supplier<Boolean> unblockCondition) {
throw new UnsupportedOperationException("not implemented");
}
@Override
public void await(String reason, Supplier<Boolean> unblockCondition) {
throw new UnsupportedOperationException("not implemented");
}
@Override
public Promise<Void> newTimer(Duration duration) {
throw new UnsupportedOperationException("not implemented");
}
@Override
public <R> R sideEffect(Class<R> resultClass, Type resultType, Func<R> func) {
throw new UnsupportedOperationException("not implemented");
}
@Override
public <R> R mutableSideEffect(
String id, Class<R> resultClass, Type resultType, BiPredicate<R, R> updated, Func<R> func) {
throw new UnsupportedOperationException("not implemented");
}
@Override
public int getVersion(String changeID, int minSupported, int maxSupported) {
throw new UnsupportedOperationException("not implemented");
}
@Override
public void continueAsNew(
Optional<String> workflowType, Optional<ContinueAsNewOptions> options, Object[] args) {
throw new UnsupportedOperationException("not implemented");
}
@Override
public void registerQuery(String queryType, Type[] argTypes, Func1<Object[], Object> callback) {
throw new UnsupportedOperationException("not implemented");
}
@Override
public UUID randomUUID() {
throw new UnsupportedOperationException("not implemented");
}
@Override
public void upsertSearchAttributes(Map<String, Object> searchAttributes) {
throw new UnsupportedOperationException("not implemented");
}
private <T> T getReply(
PollForActivityTaskResponse task,
ActivityTaskHandler.Result response,
Class<T> resultClass,
Type resultType) {
RespondActivityTaskCompletedRequest taskCompleted = response.getTaskCompleted();
if (taskCompleted != null) {
return testEnvironmentOptions
.getDataConverter()
.fromData(taskCompleted.getResult(), resultClass, resultType);
} else {
RespondActivityTaskFailedRequest taskFailed =
response.getTaskFailedResult().getTaskFailedRequest();
if (taskFailed != null) {
String causeClassName = taskFailed.getReason();
Class<? extends Exception> causeClass;
Exception cause;
try {
@SuppressWarnings("unchecked") // cc is just to have a place to put this annotation
Class<? extends Exception> cc =
(Class<? extends Exception>) Class.forName(causeClassName);
causeClass = cc;
cause =
testEnvironmentOptions
.getDataConverter()
.fromData(taskFailed.getDetails(), causeClass, causeClass);
} catch (Exception e) {
cause = e;
}
throw new ActivityFailureException(
0, task.getActivityType(), task.getActivityId(), cause);
} else {
RespondActivityTaskCanceledRequest taskCancelled = response.getTaskCancelled();
if (taskCancelled != null) {
throw new CancellationException(
new String(taskCancelled.getDetails(), StandardCharsets.UTF_8));
}
}
}
return Defaults.defaultValue(resultClass);
}
}
private static class ClassConsumerPair<T> {
final Consumer<T> consumer;
final Class<T> valueClass;
final Type valueType;
ClassConsumerPair(Class<T> valueClass, Type valueType, Consumer<T> consumer) {
this.valueClass = Objects.requireNonNull(valueClass);
this.valueType = Objects.requireNonNull(valueType);
this.consumer = Objects.requireNonNull(consumer);
}
}
private class WorkflowServiceWrapper implements IWorkflowService {
private final IWorkflowService impl;
@Override
public ClientOptions getOptions() {
return impl.getOptions();
}
@Override
public CompletableFuture<Boolean> isHealthy() {
return impl.isHealthy();
}
private WorkflowServiceWrapper(IWorkflowService impl) {
if (impl == null) {
// Create empty implementation that just ignores all requests.
this.impl =
(IWorkflowService)
Proxy.newProxyInstance(
WorkflowServiceWrapper.class.getClassLoader(),
new Class<?>[] {IWorkflowService.class},
(proxy, method, args) -> {
// noop
return method.getReturnType().getDeclaredConstructor().newInstance();
});
} else {
this.impl = impl;
}
}
@Override
public RecordActivityTaskHeartbeatResponse RecordActivityTaskHeartbeat(
RecordActivityTaskHeartbeatRequest heartbeatRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError,
WorkflowExecutionAlreadyCompletedError, TException {
if (activityHeartbetListener != null) {
Object details =
testEnvironmentOptions
.getDataConverter()
.fromData(
heartbeatRequest.getDetails(),
activityHeartbetListener.valueClass,
activityHeartbetListener.valueType);
activityHeartbetListener.consumer.accept(details);
}
// TODO: Cancellation
return impl.RecordActivityTaskHeartbeat(heartbeatRequest);
}
@Override
public RecordActivityTaskHeartbeatResponse RecordActivityTaskHeartbeatByID(
RecordActivityTaskHeartbeatByIDRequest heartbeatRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError,
WorkflowExecutionAlreadyCompletedError, DomainNotActiveError, LimitExceededError,
ServiceBusyError, TException {
return impl.RecordActivityTaskHeartbeatByID(heartbeatRequest);
}
@Override
public void RespondActivityTaskCompleted(RespondActivityTaskCompletedRequest completeRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError,
WorkflowExecutionAlreadyCompletedError, TException {
impl.RespondActivityTaskCompleted(completeRequest);
}
@Override
public void RespondActivityTaskCompletedByID(
RespondActivityTaskCompletedByIDRequest completeRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError,
WorkflowExecutionAlreadyCompletedError, TException {
impl.RespondActivityTaskCompletedByID(completeRequest);
}
@Override
public void RespondActivityTaskFailed(RespondActivityTaskFailedRequest failRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError,
WorkflowExecutionAlreadyCompletedError, TException {
impl.RespondActivityTaskFailed(failRequest);
}
@Override
public void RespondActivityTaskFailedByID(RespondActivityTaskFailedByIDRequest failRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError,
WorkflowExecutionAlreadyCompletedError, TException {
impl.RespondActivityTaskFailedByID(failRequest);
}
@Override
public void RespondActivityTaskCanceled(RespondActivityTaskCanceledRequest canceledRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError,
WorkflowExecutionAlreadyCompletedError, TException {
impl.RespondActivityTaskCanceled(canceledRequest);
}
@Override
public void RespondActivityTaskCanceledByID(
RespondActivityTaskCanceledByIDRequest canceledRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError,
WorkflowExecutionAlreadyCompletedError, TException {
impl.RespondActivityTaskCanceledByID(canceledRequest);
}
@Override
public void RequestCancelWorkflowExecution(RequestCancelWorkflowExecutionRequest cancelRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError,
CancellationAlreadyRequestedError, ServiceBusyError,
WorkflowExecutionAlreadyCompletedError, TException {
impl.RequestCancelWorkflowExecution(cancelRequest);
}
@Override
public void SignalWorkflowExecution(SignalWorkflowExecutionRequest signalRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError,
WorkflowExecutionAlreadyCompletedError, ServiceBusyError, TException {
impl.SignalWorkflowExecution(signalRequest);
}
@Override
public StartWorkflowExecutionResponse SignalWithStartWorkflowExecution(
SignalWithStartWorkflowExecutionRequest signalWithStartRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError, ServiceBusyError,
DomainNotActiveError, LimitExceededError, WorkflowExecutionAlreadyStartedError,
TException {
return impl.SignalWithStartWorkflowExecution(signalWithStartRequest);
}
@Override
public SignalWithStartWorkflowExecutionAsyncResponse SignalWithStartWorkflowExecutionAsync(
SignalWithStartWorkflowExecutionAsyncRequest signalWithStartRequest)
throws BadRequestError, WorkflowExecutionAlreadyStartedError, ServiceBusyError,
DomainNotActiveError, LimitExceededError, EntityNotExistsError,
ClientVersionNotSupportedError, TException {
return impl.SignalWithStartWorkflowExecutionAsync(signalWithStartRequest);
}
@Override
public ResetWorkflowExecutionResponse ResetWorkflowExecution(
ResetWorkflowExecutionRequest resetRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError, ServiceBusyError,
DomainNotActiveError, LimitExceededError, ClientVersionNotSupportedError, TException {
return impl.ResetWorkflowExecution(resetRequest);
}
@Override
public void TerminateWorkflowExecution(TerminateWorkflowExecutionRequest terminateRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError,
WorkflowExecutionAlreadyCompletedError, ServiceBusyError, TException {
impl.TerminateWorkflowExecution(terminateRequest);
}
@Override
public ListOpenWorkflowExecutionsResponse ListOpenWorkflowExecutions(
ListOpenWorkflowExecutionsRequest listRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError, ServiceBusyError,
TException {
return impl.ListOpenWorkflowExecutions(listRequest);
}
@Override
public ListClosedWorkflowExecutionsResponse ListClosedWorkflowExecutions(
ListClosedWorkflowExecutionsRequest listRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError, ServiceBusyError,
TException {
return impl.ListClosedWorkflowExecutions(listRequest);
}
@Override
public ListWorkflowExecutionsResponse ListWorkflowExecutions(
ListWorkflowExecutionsRequest listRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError, ServiceBusyError,
ClientVersionNotSupportedError, TException {
return impl.ListWorkflowExecutions(listRequest);
}
@Override
public ListArchivedWorkflowExecutionsResponse ListArchivedWorkflowExecutions(
ListArchivedWorkflowExecutionsRequest listRequest)
throws BadRequestError, EntityNotExistsError, ServiceBusyError,
ClientVersionNotSupportedError, TException {
return impl.ListArchivedWorkflowExecutions(listRequest);
}
@Override
public ListWorkflowExecutionsResponse ScanWorkflowExecutions(
ListWorkflowExecutionsRequest listRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError, ServiceBusyError,
ClientVersionNotSupportedError, TException {
return impl.ScanWorkflowExecutions(listRequest);
}
@Override
public CountWorkflowExecutionsResponse CountWorkflowExecutions(
CountWorkflowExecutionsRequest countRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError, ServiceBusyError,
ClientVersionNotSupportedError, TException {
return impl.CountWorkflowExecutions(countRequest);
}
@Override
public GetSearchAttributesResponse GetSearchAttributes()
throws InternalServiceError, ServiceBusyError, ClientVersionNotSupportedError, TException {
return impl.GetSearchAttributes();
}
@Override
public void RespondQueryTaskCompleted(RespondQueryTaskCompletedRequest completeRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError,
WorkflowExecutionAlreadyCompletedError, TException {
impl.RespondQueryTaskCompleted(completeRequest);
}
@Override
public ResetStickyTaskListResponse ResetStickyTaskList(ResetStickyTaskListRequest resetRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError, LimitExceededError,
ServiceBusyError, DomainNotActiveError, TException {
return impl.ResetStickyTaskList(resetRequest);
}
@Override
public QueryWorkflowResponse QueryWorkflow(QueryWorkflowRequest queryRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError, QueryFailedError,
TException {
return impl.QueryWorkflow(queryRequest);
}
@Override
public DescribeWorkflowExecutionResponse DescribeWorkflowExecution(
DescribeWorkflowExecutionRequest describeRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError, TException {
return impl.DescribeWorkflowExecution(describeRequest);
}
@Override
public DescribeTaskListResponse DescribeTaskList(DescribeTaskListRequest request)
throws BadRequestError, InternalServiceError, EntityNotExistsError, TException {
return impl.DescribeTaskList(request);
}
@Override
public ClusterInfo GetClusterInfo() throws InternalServiceError, ServiceBusyError, TException {
return impl.GetClusterInfo();
}
@Override
public ListTaskListPartitionsResponse ListTaskListPartitions(
ListTaskListPartitionsRequest request)
throws BadRequestError, EntityNotExistsError, LimitExceededError, ServiceBusyError,
TException {
return impl.ListTaskListPartitions(request);
}
@Override
public void RefreshWorkflowTasks(RefreshWorkflowTasksRequest request)
throws BadRequestError, DomainNotActiveError, ServiceBusyError, EntityNotExistsError,
TException {
impl.RefreshWorkflowTasks(request);
}
@Override
public void RegisterDomain(
RegisterDomainRequest registerRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.RegisterDomain(registerRequest, resultHandler);
}
@Override
public void DescribeDomain(
DescribeDomainRequest describeRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.DescribeDomain(describeRequest, resultHandler);
}
@Override
public void DiagnoseWorkflowExecution(
DiagnoseWorkflowExecutionRequest diagnoseRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.DiagnoseWorkflowExecution(diagnoseRequest, resultHandler);
}
@Override
public void ListDomains(ListDomainsRequest listRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.ListDomains(listRequest, resultHandler);
}
@Override
public void UpdateDomain(UpdateDomainRequest updateRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.UpdateDomain(updateRequest, resultHandler);
}
@Override
public void DeprecateDomain(
DeprecateDomainRequest deprecateRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.DeprecateDomain(deprecateRequest, resultHandler);
}
@Override
public void RestartWorkflowExecution(
RestartWorkflowExecutionRequest restartRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.RestartWorkflowExecution(restartRequest, resultHandler);
}
@Override
public void GetTaskListsByDomain(
GetTaskListsByDomainRequest request, AsyncMethodCallback resultHandler) throws TException {
impl.GetTaskListsByDomain(request, resultHandler);
}
@Override
public void StartWorkflowExecution(
StartWorkflowExecutionRequest startRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.StartWorkflowExecution(startRequest, resultHandler);
}
@Override
public void StartWorkflowExecutionAsync(
StartWorkflowExecutionAsyncRequest startRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.StartWorkflowExecutionAsync(startRequest, resultHandler);
}
@Override
public void StartWorkflowExecutionWithTimeout(
StartWorkflowExecutionRequest startRequest,
AsyncMethodCallback resultHandler,
Long timeoutInMillis)
throws TException {
impl.StartWorkflowExecutionWithTimeout(startRequest, resultHandler, timeoutInMillis);
}
@Override
public void StartWorkflowExecutionAsyncWithTimeout(
StartWorkflowExecutionAsyncRequest startAsyncRequest,
AsyncMethodCallback resultHandler,
Long timeoutInMillis)
throws TException {
impl.StartWorkflowExecutionAsyncWithTimeout(
startAsyncRequest, resultHandler, timeoutInMillis);
}
@Override
public void GetWorkflowExecutionHistory(
GetWorkflowExecutionHistoryRequest getRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.GetWorkflowExecutionHistory(getRequest, resultHandler);
}
@Override
public void GetWorkflowExecutionHistoryWithTimeout(
GetWorkflowExecutionHistoryRequest getRequest,
AsyncMethodCallback resultHandler,
Long timeoutInMillis)
throws TException {
impl.GetWorkflowExecutionHistoryWithTimeout(getRequest, resultHandler, timeoutInMillis);
}
@Override
public void PollForDecisionTask(
PollForDecisionTaskRequest pollRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.PollForDecisionTask(pollRequest, resultHandler);
}
@Override
public void RespondDecisionTaskCompleted(
RespondDecisionTaskCompletedRequest completeRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.RespondDecisionTaskCompleted(completeRequest, resultHandler);
}
@Override
public void RespondDecisionTaskFailed(
RespondDecisionTaskFailedRequest failedRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.RespondDecisionTaskFailed(failedRequest, resultHandler);
}
@Override
public void PollForActivityTask(
PollForActivityTaskRequest pollRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.PollForActivityTask(pollRequest, resultHandler);
}
@Override
public void RecordActivityTaskHeartbeat(
RecordActivityTaskHeartbeatRequest heartbeatRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.RecordActivityTaskHeartbeat(heartbeatRequest, resultHandler);
}
@Override
public void RecordActivityTaskHeartbeatByID(
RecordActivityTaskHeartbeatByIDRequest heartbeatRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.RecordActivityTaskHeartbeatByID(heartbeatRequest, resultHandler);
}
@Override
public void RespondActivityTaskCompleted(
RespondActivityTaskCompletedRequest completeRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.RespondActivityTaskCompleted(completeRequest, resultHandler);
}
@Override
public void RespondActivityTaskCompletedByID(
RespondActivityTaskCompletedByIDRequest completeRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.RespondActivityTaskCompletedByID(completeRequest, resultHandler);
}
@Override
public void RespondActivityTaskFailed(
RespondActivityTaskFailedRequest failRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.RespondActivityTaskFailed(failRequest, resultHandler);
}
@Override
public void RespondActivityTaskFailedByID(
RespondActivityTaskFailedByIDRequest failRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.RespondActivityTaskFailedByID(failRequest, resultHandler);
}
@Override
public void RespondActivityTaskCanceled(
RespondActivityTaskCanceledRequest canceledRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.RespondActivityTaskCanceled(canceledRequest, resultHandler);
}
@Override
public void RespondActivityTaskCanceledByID(
RespondActivityTaskCanceledByIDRequest canceledRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.RespondActivityTaskCanceledByID(canceledRequest, resultHandler);
}
@Override
public void RequestCancelWorkflowExecution(
RequestCancelWorkflowExecutionRequest cancelRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.RequestCancelWorkflowExecution(cancelRequest, resultHandler);
}
@Override
public void SignalWorkflowExecution(
SignalWorkflowExecutionRequest signalRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.SignalWorkflowExecution(signalRequest, resultHandler);
}
@Override
public void SignalWorkflowExecutionWithTimeout(
SignalWorkflowExecutionRequest signalRequest,
AsyncMethodCallback resultHandler,
Long timeoutInMillis)
throws TException {
impl.SignalWorkflowExecutionWithTimeout(signalRequest, resultHandler, timeoutInMillis);
}
@Override
public void SignalWithStartWorkflowExecution(
SignalWithStartWorkflowExecutionRequest signalWithStartRequest,
AsyncMethodCallback resultHandler)
throws TException {
impl.SignalWithStartWorkflowExecution(signalWithStartRequest, resultHandler);
}
@Override
public void SignalWithStartWorkflowExecutionAsync(
SignalWithStartWorkflowExecutionAsyncRequest signalWithStartRequest,
AsyncMethodCallback resultHandler)
throws TException {
impl.SignalWithStartWorkflowExecutionAsync(signalWithStartRequest, resultHandler);
}
@Override
public void ResetWorkflowExecution(
ResetWorkflowExecutionRequest resetRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.ResetWorkflowExecution(resetRequest, resultHandler);
}
@Override
public void TerminateWorkflowExecution(
TerminateWorkflowExecutionRequest terminateRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.TerminateWorkflowExecution(terminateRequest, resultHandler);
}
@Override
public void ListOpenWorkflowExecutions(
ListOpenWorkflowExecutionsRequest listRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.ListOpenWorkflowExecutions(listRequest, resultHandler);
}
@Override
public void ListClosedWorkflowExecutions(
ListClosedWorkflowExecutionsRequest listRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.ListClosedWorkflowExecutions(listRequest, resultHandler);
}
@Override
public void ListWorkflowExecutions(
ListWorkflowExecutionsRequest listRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.ListWorkflowExecutions(listRequest, resultHandler);
}
@Override
public void ListArchivedWorkflowExecutions(
ListArchivedWorkflowExecutionsRequest listRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.ListArchivedWorkflowExecutions(listRequest, resultHandler);
}
@Override
public void ScanWorkflowExecutions(
ListWorkflowExecutionsRequest listRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.ScanWorkflowExecutions(listRequest, resultHandler);
}
@Override
public void CountWorkflowExecutions(
CountWorkflowExecutionsRequest countRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.CountWorkflowExecutions(countRequest, resultHandler);
}
@Override
public void GetSearchAttributes(AsyncMethodCallback resultHandler) throws TException {
impl.GetSearchAttributes(resultHandler);
}
@Override
public void RespondQueryTaskCompleted(
RespondQueryTaskCompletedRequest completeRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.RespondQueryTaskCompleted(completeRequest, resultHandler);
}
@Override
public void ResetStickyTaskList(
ResetStickyTaskListRequest resetRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.ResetStickyTaskList(resetRequest, resultHandler);
}
@Override
public void QueryWorkflow(QueryWorkflowRequest queryRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.QueryWorkflow(queryRequest, resultHandler);
}
@Override
public void DescribeWorkflowExecution(
DescribeWorkflowExecutionRequest describeRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.DescribeWorkflowExecution(describeRequest, resultHandler);
}
@Override
public void DescribeTaskList(DescribeTaskListRequest request, AsyncMethodCallback resultHandler)
throws TException {
impl.DescribeTaskList(request, resultHandler);
}
@Override
public void GetClusterInfo(AsyncMethodCallback resultHandler) throws TException {
impl.GetClusterInfo(resultHandler);
}
@Override
public void ListTaskListPartitions(
ListTaskListPartitionsRequest request, AsyncMethodCallback resultHandler)
throws TException {
impl.ListTaskListPartitions(request, resultHandler);
}
@Override
public void RefreshWorkflowTasks(
RefreshWorkflowTasksRequest request, AsyncMethodCallback resultHandler) throws TException {
impl.RefreshWorkflowTasks(request, resultHandler);
}
@Override
public void RegisterDomain(RegisterDomainRequest registerRequest)
throws BadRequestError, InternalServiceError, DomainAlreadyExistsError, TException {
impl.RegisterDomain(registerRequest);
}
@Override
public DescribeDomainResponse DescribeDomain(DescribeDomainRequest describeRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError, TException {
return impl.DescribeDomain(describeRequest);
}
@Override
public DiagnoseWorkflowExecutionResponse DiagnoseWorkflowExecution(
DiagnoseWorkflowExecutionRequest diagnoseRequest)
throws DomainNotActiveError, ServiceBusyError, EntityNotExistsError,
ClientVersionNotSupportedError, TException {
return impl.DiagnoseWorkflowExecution(diagnoseRequest);
}
@Override
public ListDomainsResponse ListDomains(ListDomainsRequest listRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError, ServiceBusyError,
TException {
return impl.ListDomains(listRequest);
}
@Override
public UpdateDomainResponse UpdateDomain(UpdateDomainRequest updateRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError, TException {
return impl.UpdateDomain(updateRequest);
}
@Override
public void DeprecateDomain(DeprecateDomainRequest deprecateRequest)
throws BadRequestError, EntityNotExistsError, LimitExceededError, ServiceBusyError,
ClientVersionNotSupportedError, TException {
impl.DeprecateDomain(deprecateRequest);
}
@Override
public RestartWorkflowExecutionResponse RestartWorkflowExecution(
RestartWorkflowExecutionRequest restartRequest)
throws BadRequestError, ServiceBusyError, DomainNotActiveError, LimitExceededError,
EntityNotExistsError, ClientVersionNotSupportedError, TException {
return impl.RestartWorkflowExecution(restartRequest);
}
@Override
public GetTaskListsByDomainResponse GetTaskListsByDomain(GetTaskListsByDomainRequest request)
throws BadRequestError, EntityNotExistsError, LimitExceededError, ServiceBusyError,
ClientVersionNotSupportedError, TException {
return impl.GetTaskListsByDomain(request);
}
@Override
public StartWorkflowExecutionResponse StartWorkflowExecution(
StartWorkflowExecutionRequest startRequest)
throws BadRequestError, InternalServiceError, WorkflowExecutionAlreadyStartedError,
ServiceBusyError, TException {
return impl.StartWorkflowExecution(startRequest);
}
@Override
public StartWorkflowExecutionAsyncResponse StartWorkflowExecutionAsync(
StartWorkflowExecutionAsyncRequest startRequest)
throws BadRequestError, WorkflowExecutionAlreadyStartedError, ServiceBusyError,
DomainNotActiveError, LimitExceededError, EntityNotExistsError,
ClientVersionNotSupportedError, TException {
return impl.StartWorkflowExecutionAsync(startRequest);
}
@Override
public GetWorkflowExecutionHistoryResponse GetWorkflowExecutionHistory(
GetWorkflowExecutionHistoryRequest getRequest)
throws BadRequestError, InternalServiceError, EntityNotExistsError, ServiceBusyError,
TException {
return impl.GetWorkflowExecutionHistory(getRequest);
}
@Override
public GetWorkflowExecutionHistoryResponse GetWorkflowExecutionHistoryWithTimeout(