Files
2nd/10_Wiki/Topics/Domain_Programming/Programming & Language/Scheduler API.md
T
Antigravity Agent c24165b8bc refactor(topics): 멀티 에이전트용 지식 재편 — _Common(공통 기본기) + Domain_* 구조
에이전트 8종(대화형/프로그래머 C·S/디자이너/설계자/기획자/QA/PD/PM)에게
[공통 기본 능력 + 롤별 Specialty] 2층으로 지식을 주입하기 위한 재분류.
문서 내용·포맷은 무수정, 폴더 이동만 (6,372개 문서 수 보존 확인).

- Topic_Programming → Domain_Programming (내부 구조 보존)
- Topic_Graphic → Domain_Design
- Topic_Business → Domain_Product
- Topic_General → Domain_General
- _Common 신설: Math(구 Topic_Math_Specialty), Reasoning(구 General/From_Thinking & Reasoning),
  Reasoning_Creativity(구 General/From_창의성), Communication(Poetic_Blog_Writing + From_writing)
- 타 도메인의 From_* 폴더는 유지 (출처 표기일 뿐, 이미 도메인에 맞게 분류된 문서)
- 빈 폴더 정리 (memory/procedures)
- 에이전트→폴더 매핑은 workspace의 .astra/agent-knowledge-map.json (9개 에이전트)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-11 11:05:56 +09:00

3.7 KiB

id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
id title category status canonical_id aliases duplicate_of source_trust_level confidence_score verification_status tags raw_sources last_reinforced github_commit tech_stack
wiki-2026-0508-scheduler-api Scheduler API 10_Wiki/Topics verified self
scheduler.postTask
Prioritized Task Scheduling
none A 0.9 applied
web
performance
scheduling
browser-api
2026-05-10 pending
language framework
JavaScript Web Platform

Scheduler API

매 한 줄

"매 priority-aware task scheduling for the main thread". Scheduler API (scheduler.postTask, scheduler.yield) 는 long task breakup + priority hint (user-blocking / user-visible / background) 로 INP/responsiveness 최적화. 2026 Chromium + Firefox stable.

매 핵심

매 Priorities

  • user-blocking: 매 immediate UI response (input handler post-work).
  • user-visible: 매 default — visible 하지만 non-blocking.
  • background: 매 lazy work (analytics, prefetch).

매 vs setTimeout(0) / requestIdleCallback

  • 매 setTimeout(0): no priority, no abort.
  • 매 rIC: idle only, deadline-based.
  • 매 postTask: explicit priority + AbortSignal + delay.

매 응용

  1. 매 long list rendering 분할.
  2. 매 input handler 후 heavy work 양보.
  3. 매 background data prefetch.

💻 패턴

postTask 기본

scheduler.postTask(() => doWork(), { priority: 'background' });

scheduler.yield (long task breakup)

async function processItems(items) {
  for (const item of items) {
    process(item);
    if (navigator.scheduling?.isInputPending?.() || items.indexOf(item) % 50 === 0) {
      await scheduler.yield();
    }
  }
}

TaskController로 abort

const controller = new TaskController({ priority: 'user-visible' });
scheduler.postTask(longJob, { signal: controller.signal });
// 매 cancel
controller.abort();
// 매 priority 동적 변경
controller.setPriority('background');

Delay

scheduler.postTask(refresh, { priority: 'background', delay: 5000 });

Polyfill fallback

const yield_ = () =>
  globalThis.scheduler?.yield?.() ??
  new Promise(r => setTimeout(r, 0));

React + Scheduler API

// React 19+ 의 useTransition + scheduler integration
startTransition(() => {
  scheduler.postTask(() => setState(heavy), { priority: 'background' });
});

매 결정 기준

상황 Approach
Heavy work after input scheduler.yield() mid-loop
Lazy prefetch postTask({priority:'background'})
Cancel-able task TaskController
Idle-only callback requestIdleCallback
매 simple deferral queueMicrotask

기본값: 매 long loops 의 scheduler.yield() + 매 background work postTask({priority:'background'}).

🔗 Graph

  • 부모: Core Web Vitals Optimization (INP, LCP, CLS)
  • 응용: INP_Optimization
  • Adjacent: AbortController · React_useTransition

🤖 LLM 활용

언제: 매 INP regression 발견 + 매 long task (>50ms) breakup 필요 시. 매 prioritized background work. 언제 X: 매 worker offload 가 더 적합한 CPU-heavy work, 또는 매 framework scheduler (React) 가 이미 처리.

안티패턴

  • postTask 안 yield: 매 single long callback 은 여전히 long task. 매 internally yield 필요.
  • user-blocking 남용: 매 priority inversion 의. 매 진짜 input-critical 만.
  • Polyfill 없는 production deploy: 매 Safari 일부 버전 미지원.

🧪 검증 / 중복

  • Verified (W3C Prioritized Task Scheduling, web.dev/optimize-inp).
  • 신뢰도 A.

🕓 Changelog

날짜 변경
2026-05-08 Phase 1
2026-05-10 Manual cleanup — postTask + yield patterns