We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To use a stub that only defines an update method
Cannot use a stub that only defines an update method
reported on slack: https://temporalio.slack.com/archives/CTT84KXK9/p1704733148879439
example:
public interface ParentWorkflowInterface { @UpdateMethod void foo(); } @WorkflowInterface public interface WorkflowInterface extends ParentWorkflowInterface { @WorkflowMethod void execute(); } public class WorkflowImpl implements WorkflowInterface { @Override void execute() { } @Override void foo() { } }
This call fails
ParentWorkflowInterface workflow = workflowClient.newWorkflowStub(ParentWorkflowInterface.class, "workflowId"); workflow.foo();
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Expected Behavior
To use a stub that only defines an update method
Actual Behavior
Cannot use a stub that only defines an update method
reported on slack: https://temporalio.slack.com/archives/CTT84KXK9/p1704733148879439
example:
This call fails
The text was updated successfully, but these errors were encountered: