@squidcloud/client
    Preparing search index...

    Interface SchedulerConfig

    Configuration for a scheduled task in the platform.

    interface SchedulerConfig {
        cronExpression: string;
        exclusive: boolean;
        functionName: `${string}:${string}`;
    }
    Index

    Properties

    cronExpression: string

    The cron expression defining the schedule timing.

    exclusive: boolean

    Indicates whether the scheduler should run exclusively, preventing overlaps.

    functionName: `${string}:${string}`

    The name of the service function to be executed on the schedule.