Report an issue
Class

CKEDITOR.tools.buffers.throttle

classsince 4.11.0

Throttles input events (or any input calls) and triggers output not more often than once per minInterval.

Unlike CKEDITOR.tools.buffers.event this class allows passing custom parameters into the input function. For more information see the Throttling function issue.

Filtering

Properties

  • private

    _args : Mixed[]

    Arguments for the last scheduled call.

    Defaults to []

  • private readonly inherited

    _context : Mixed

    The variable to be used as a context for the output calls.

  • private readonly inherited

    _minInterval : Number

    The minimal interval (in milliseconds) between the calls.

  • private inherited

    _scheduledTimer : Number

    The ID of a delayed function call that will be called after the current interval frame.

    Defaults to 0

Methods