Fix incorrect doc for java sdk

Java SDK already support creating timer. 

Signed-off-by: kaibocai <89094811+kaibocai@users.noreply.github.com>
This commit is contained in:
kaibocai 2024-01-27 07:04:19 -06:00 committed by GitHub
parent 77a9d85175
commit 9ff3dfd63c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 3 deletions

View File

@ -496,9 +496,8 @@ public class MonitorWorkflow extends Workflow {
}
// Put the workflow to sleep until the determined time
// Note: ctx.createTimer() method is not supported in the Java SDK yet
try {
TimeUnit.SECONDS.sleep(nextSleepInterval.getSeconds());
ctx.createTimer(nextSleepInterval);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}