Variable: erc-querypoll-period-params

erc-querypoll-period-params is a variable defined in erc-notify.el.gz.

Value

(10 10 1)

Documentation

Parameters affecting the delay with respect to the number of buffers.

The elements represent some parameters of an exponential decay function, a(e)^{-x/b}+c. The first number (a) affects the overall scaling. A higher value means longer delays for all query buffers relative to queue length. The second number (b) determines how quickly the delay decreases as the queue length increases. Larger values make the delay taper off more gradually. The last number (c) sets the minimum delay between updates regardless of queue length.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-notify.el.gz
(defvar erc-querypoll-period-params '(10 10 1)
  "Parameters affecting the delay with respect to the number of buffers.
The elements represent some parameters of an exponential decay function,
a(e)^{-x/b}+c.  The first number (a) affects the overall scaling.  A
higher value means longer delays for all query buffers relative to queue
length.  The second number (b) determines how quickly the delay
decreases as the queue length increases.  Larger values make the delay
taper off more gradually.  The last number (c) sets the minimum delay
between updates regardless of queue length.")