Skip to content

ClusterCron

1 exports Added in v1.0.0 Source

Constructors

make

Added in v1.0.0 Source

Signature

declare function make<E, R>(options: {
  readonly calculateNextRunFromPrevious?: boolean;
  readonly cron: Cron;
  readonly execute: Effect<void, E, R>;
  readonly name: string;
  readonly shardGroup?: string;
  readonly skipIfOlderThan?: any;
}): Layer<never, never, Sharding | Exclude<R, Scope>>;