MCPcopy Create free account
hub / github.com/codeaashu/claude-code / dispatchContinuous

Method dispatchContinuous

src/ink/events/dispatcher.ts:224–232  ·  view source on GitHub ↗

* Dispatch with continuous priority. * For high-frequency events: resize, scroll, mouse move.

(target: EventTarget, event: TerminalEvent)

Source from the content-addressed store, hash-verified

222 * For high-frequency events: resize, scroll, mouse move.
223 */
224 dispatchContinuous(target: EventTarget, event: TerminalEvent): boolean {
225 const previousPriority = this.currentUpdatePriority
226 try {
227 this.currentUpdatePriority = ContinuousEventPriority as number
228 return this.dispatch(target, event)
229 } finally {
230 this.currentUpdatePriority = previousPriority
231 }
232 }
233}
234

Callers

nothing calls this directly

Calls 1

dispatchMethod · 0.95

Tested by

no test coverage detected