tess 0.4.0
Performance-first tile and path simulation substrate
Loading...
Searching...
No Matches
tess::PathAgentSink Concept Reference

#include <tess/ecs/adapter.h>

Concept definition

template<typename S>
concept PathAgentSink =
requires(S& sink, const PathAgentBatch& batch) { sink.apply(batch); }
Definition adapter.h:69
Definition adapter.h:126

Detailed Description

Idempotent sink that mirrors processed batch state into an ECS.

A sink must not reapply path results; exactly-once application belongs to the tess tick pipeline.