-
Notifications
You must be signed in to change notification settings - Fork 222
Closed
Labels
durabletaskwork for dapr/durabletask-javawork for dapr/durabletask-javakind/bugSomething isn't workingSomething isn't working
Description
Expected Behavior
I should be able to create a timer for a ZonedDateTime.
Actual Behavior
Behavior not implemented.
Steps to Reproduce the Problem
Create a workflow that use a timer:
ZonedDateTime now = ZonedDateTime.now();
//Let's create a ZonedDateTime 30 seconds in the future
ZonedDateTime inTheFuture = now.plusSeconds(30);
ctx.getLogger().info("Starting the timer at: {}", new Date());
ctx.createTimer(inTheFuture).await();
ctx.getLogger().info("Finishing the timer at: {}", new Date());
Release Note
RELEASE NOTE:
Metadata
Metadata
Assignees
Labels
durabletaskwork for dapr/durabletask-javawork for dapr/durabletask-javakind/bugSomething isn't workingSomething isn't working