mirror of
https://github.com/denoland/deno.git
synced 2024-12-02 17:01:14 -05:00
24 lines
535 B
Rust
24 lines
535 B
Rust
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
||
|
|
||
|
use async_trait::async_trait;
|
||
|
use deno_core::error::AnyError;
|
||
|
|
||
|
pub trait CronHandler {
|
||
|
type EH: CronHandle + 'static;
|
||
|
|
||
|
fn create(&self, spec: CronSpec) -> Result<Self::EH, AnyError>;
|
||
|
}
|
||
|
|
||
|
#[async_trait(?Send)]
|
||
|
pub trait CronHandle {
|
||
|
async fn next(&self, prev_success: bool) -> Result<bool, AnyError>;
|
||
|
fn close(&self);
|
||
|
}
|
||
|
|
||
|
#[derive(Clone)]
|
||
|
pub struct CronSpec {
|
||
|
pub name: String,
|
||
|
pub cron_schedule: String,
|
||
|
pub backoff_schedule: Option<Vec<u32>>,
|
||
|
}
|