Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ public void DeprecateDomain(
public void RestartWorkflowExecution(
RestartWorkflowExecutionRequest restartRequest, AsyncMethodCallback resultHandler)
throws TException {
impl.RestartWorkflowExecution(restartRequest);
impl.RestartWorkflowExecution(restartRequest, resultHandler);
}

@Override
Expand Down Expand Up @@ -743,7 +743,7 @@ public void CountWorkflowExecutions(

@Override
public void GetSearchAttributes(AsyncMethodCallback resultHandler) throws TException {
impl.GetSearchAttributes();
impl.GetSearchAttributes(resultHandler);
}

@Override
Expand Down
Loading