kappa_sdk.user_tasks.Scheduler#

class kappa_sdk.user_tasks.Scheduler[source]#

Scheduler.

Note

Should not be instantiated directly.

Attributes

Methods

Scheduler.reschedule_at_time_delta(time_delta)

Asks KAPPA Automate to re-run this user task at date after it finishes its current execution.

Scheduler.reschedule_immediate()

Asks KAPPA Automate to re-run this user task right after it finishes its current execution.

Scheduler.reschedule_with_cron(cron_schedule)

__init__()[source]#
Return type:

None

reschedule_immediate()[source]#

Asks KAPPA Automate to re-run this user task right after it finishes its current execution.

Return type:

None

reschedule_at_time_delta(time_delta)[source]#

Asks KAPPA Automate to re-run this user task at date after it finishes its current execution.

Parameters:

time_delta (timedelta)

Return type:

None

reschedule_with_cron(cron_schedule)[source]#
Parameters:

cron_schedule (str)

Return type:

None

property cron_schedule: str | None#
property is_reschedule_immediate: bool#