[G1-Sync] Manual knowledge update

This commit is contained in:
Antigravity Agent
2026-04-30 22:42:02 +09:00
parent 0bd4f19e38
commit c36c0644a1
4888 changed files with 18470 additions and 18602 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
---
title: 표준 시스템 통신 프로토콜 및 상태 제어
category: Software Architecture
tags: [Protocol, State Machine, Data Exchange, Lifecycle]
category: Software [[Architecture]]
tags: [Protocol, [[State]] Machine, Data Exchange, Lifecycle]
created: 2026-04-20
---
@@ -16,7 +16,7 @@ created: 2026-04-20
- `UPDATE`: 엔진 계산 결과의 브로드캐스트.
## 🔄 시스템 생명 주기 (Life Cycle)
시스템은 [초기화 $\rightarrow$ 활성 루프 $\rightarrow$ 종료/정리]의 명확한 단계를 거쳐야 리소스 누수(Memory Leak)를 방지할 수 있습니다.
시스템은 [초기화 $\rightarrow$ 활성 루프 $\rightarrow$ 종료/정리]의 명확한 단계를 거쳐야 리소스 누수([[memory]] Leak)를 방지할 수 있습니다.
## 🚨 상태 머신 (State Machine) 도입
시스템 복잡도가 임계치를 넘을 경우, `READY`, `RUNNING`, `PAUSED` 등 상태를 명시적으로 제어하는 **State Machine** 적용을 원칙으로 삼습니다.