Variable: semantic-idle-scheduler-work-idle-time
semantic-idle-scheduler-work-idle-time is a customizable variable
defined in idle.el.gz.
Value
60
Documentation
Time in seconds of idle before scheduling big work.
This time should be long enough that once any big work is started, it is unlikely the user would be ready to type again right away.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/idle.el.gz
(defcustom semantic-idle-scheduler-work-idle-time 60
"Time in seconds of idle before scheduling big work.
This time should be long enough that once any big work is started,
it is unlikely the user would be ready to type again right away."
:group 'semantic
:type 'number
:set (lambda (sym val)
(set-default sym val)
(when (timerp semantic-idle-scheduler-timer)
(cancel-timer semantic-idle-scheduler-timer)
(setq semantic-idle-scheduler-timer nil)
(semantic-idle-scheduler-setup-timers))))