Function
sleep
(duration: Duration.DurationInput)
Source from the content-addressed store, hash-verified
| 43 | |
| 44 | /** @internal */ |
| 45 | export const sleep = (duration: Duration.DurationInput): Effect.Effect<void> => { |
| 46 | const decodedDuration = Duration.decode(duration) |
| 47 | return clockWith((clock) => clock.sleep(decodedDuration)) |
| 48 | } |
| 49 | |
| 50 | /** @internal */ |
| 51 | export const defaultServicesWith = <A, E, R>( |
Callers
nothing calls this directly
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…