Skip to main content

Awaiting Time

val waitForInput: WIO[MyState, Nothing, MyState] =
WIO
.await[MyState](1.day)
.persistStartThrough(start => MyTimerStarted(start.at))(evt => evt.time)
.persistReleaseThrough(release => MyTimerReleased(release.at))(evt => evt.time)
.autoNamed