@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
44 lines (40 loc) • 1.11 kB
text/typescript
// ets_tracing: off
import type * as CS from "../Cause/index.js"
import type * as CL from "../Clock/index.js"
import { halt, succeed, suspend } from "./core.js"
import type { Effect } from "./effect.js"
import { flatten } from "./flatten.js"
import { timeoutTo_ } from "./timeoutTo.js"
/**
* The same as `timeout`, but instead of producing a `None` in the event
* of timeout, it will produce the specified failure.
*/
export function timeoutFailCause_<R, E, E1, A>(
self: Effect<R, E, A>,
cause: () => CS.Cause<E1>,
d: number,
__trace?: string
): Effect<R & CL.HasClock, E | E1, A> {
return flatten(
timeoutTo_(
self,
d,
suspend(() => halt(cause())),
(_) => succeed(_),
__trace
)
)
}
/**
* The same as `timeout`, but instead of producing a `None` in the event
* of timeout, it will produce the specified failure.
*
* @ets_data_first timeoutFailCause_
*/
export function timeoutFailCause<E1>(
cause: () => CS.Cause<E1>,
d: number,
__trace?: string
) {
return <R, E, A>(self: Effect<R, E, A>) => timeoutFailCause_(self, cause, d, __trace)
}