AyCode.Core/AyCode.Core/Enums
Loretta 17daf0fef2 Document AcBinary wire format, sync docs, update conventions
- Add BINARY_FORMAT.md: full AcBinary wire format spec (markers, encoding, options, protocol, interactions)
- Reference BINARY_FORMAT.md from GLOSSARY.md, Binaries/README.md, and Serializers/Binaries/README.md; add new glossary terms
- Clarify and expand config options tables to match new doc
- Add/clarify LLM maintenance rules: always sync .md files with code, auto-fix discrepancies
- Update root README.md: AyCode.Core targets .NET 9, not 10; stress doc/code sync
- Add code reuse and doc sync conventions to copilot-instructions.md and CONVENTIONS.md
- Add docs/ folder and BINARY_FORMAT.md to solution as Solution Items
- Minor clarifications and cross-links in ARCHITECTURE.md and other docs
2026-03-29 09:11:57 +02:00
..
AppType.cs multiple signalr param; improvements, fixes, etc.. 2024-06-21 14:32:10 +02:00
MessageContextType.cs Messages improvements, fixes... 2024-08-16 17:01:02 +02:00
README.md Document AcBinary wire format, sync docs, update conventions 2026-03-29 09:11:57 +02:00
TrackingState.cs improvements, fixes 2024-06-09 11:13:23 +02:00

README.md

Enums

Shared enums used across the platform. All are byte-based for compact serialization.

Key Files

  • AppType.cs — Identifies application type: None(0), Server(1), Relay(5), Game(10), Web(15), Mobile(20), Dissonance(25), TestUnit(255).
  • MessageContextType.cs — Message routing context: Unset(0), System(5), Private(10), Group(15), Transfer(20), Product(25), Company(30).
  • TrackingState.cs — Entity change tracking: None(0), Get(1), GetAll(2), Add(3), Update(4), Remove(5).