UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

37 lines (33 loc) 1.17 kB
// ets_tracing: off import type * as CL from "../../../../Clock/index.js" import * as E from "../../../../Either/index.js" import * as O from "../../../../Option/index.js" import type * as SC from "../../../../Schedule/index.js" import type * as C from "../core.js" import * as Collect from "./collect.js" import * as RepeatEither from "./repeatEither.js" /** * Repeats the entire stream using the specified schedule. The stream will execute normally, * and then repeat again according to the provided schedule. */ export function repeatSchedule_<R, R1, E, A, B>( self: C.Stream<R, E, A>, schedule: SC.Schedule<R1, any, B> ): C.Stream<R & R1 & CL.HasClock, E, A> { return Collect.collect_( RepeatEither.repeatEither_(self, schedule), E.fold( (_) => O.none, (a) => O.some(a) ) ) } /** * Repeats the entire stream using the specified schedule. The stream will execute normally, * and then repeat again according to the provided schedule. * * @ets_data_first repeat_ */ export function repeatSchedule<R1, B>(schedule: SC.Schedule<R1, any, B>) { return <R, E, A>(self: C.Stream<R, E, A>) => repeatSchedule_(self, schedule) }