Interface AbortableRenderScheduleOptions

Options for abortable render schedule.

Hierarchy

Properties

error?: ((this, ...messages) => void)

Type declaration

    • (this, ...messages): void
    • Reports an error. E.g. a render shot execution failure.

      Reports errors with console.error() by default.

      Parameters

      • this: void
      • Rest ...messages: unknown[]

        Error messages to report.

      Returns void

node?: Node

A DOM node for constructed schedule.

Used to detect missing window option.

supply?: Supply

Render schedule supply.

Stops rendering in created schedule once cut off.

A new supply will be created when omitted.

window?: Window

A window for constructed schedule.

Detected by nodeWindow by default, if node is specified. Falls back to current window.

The schedulers that don't need a window never access this option value.

Generated using TypeDoc