Open
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: