SAService Architect Back to designer
SAService ArchitectDocumentation
Endpoint type Cron / endpoint

Cron endpoint

A local UTC schedule that invokes a generated endpoint function.

When to use

Create this endpoint inside a Cron connector, then select it from an Input or Sink stream.

Behavior

  • The scheduler calls the generated endpoint function.
  • The endpoint function emits application values into the input stream.
  • Missed and overlapping runs follow explicit policies.

General properties

Endpoint identity

PropertyTypeDescription
namestring

Endpoint name unique in the topology.

Required

Schedule properties

Schedule endpoint contract

PropertyTypeDescription
enabledboolean

Starts scheduler integration when true.

Default: true
tracingEnabledboolean

Creates tracing for each admitted source event.

Default: false
schedulecron expression

UTC schedule expression.

Required
timezoneUTC

Portable runtimes currently require UTC.

Default: UTC
overlapPolicyAllow | Skip

Behavior when the previous firing is still running.

Default: SkipAllowed: Allow, Skip
missedRunPolicySkip | FireOnce

Behavior after a delayed firing.

Default: FireOnceAllowed: Skip, FireOnce

Function properties

Generated transport handler and code placement

PropertyTypeDescription
functionNamesymbol

Generated endpoint handler name.

functionPackagestring

Generated handler package.

publicFunctionboolean

Places the handler in shared code.

Default: false
functionDescriptiontext

Generated documentation comment.

functionInitializerGroupstring

Dependency-injection initialization group.

functionModuleModule

Shared module for the handler.

Visible when publicFunction is true.

Configuration example

enabled: true
schedule: */5 * * * *
timezone: UTC
overlapPolicy: Skip