temporal-sdk: 1.17.0
temporal-spring-boot-starter-alpha: 1.17.0
When using Temporal-Springboot-alpha Is there a way for declaring ActivityStub using an annotation?
Something like
@ActivityStub(
taskQueue = SOME_QUEUE,
retryOptions =
@RetryActivityOptions(
maximumAttempts = 1,
doNotRetry = {“SomeException”}))
private ISomeActivity someActivity;
Instead of defining it as “Workflow.newActivityStub(ISomeActivity.class, activityOptions)” and “Workflow.newLocalActivityStub(ISomeActivity.class, activityOptions)”