refactor(ingestion): remove unused TaggedExecution record

No callers after the legacy PG ingestion path was retired in 0f635576.
core-classes.md updated to drop the leftover note.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-21 23:33:26 +02:00
parent 98cbf8f3fc
commit 06c6f53bbc
2 changed files with 1 additions and 12 deletions

View File

@@ -1,11 +0,0 @@
package com.cameleer.server.core.ingestion;
import com.cameleer.common.model.RouteExecution;
/**
* Pairs a {@link RouteExecution} with the authenticated agent identity.
* <p>
* The agent ID is extracted from the SecurityContext in the controller layer
* and carried through the write buffer so the flush scheduler can persist it.
*/
public record TaggedExecution(String instanceId, RouteExecution execution) {}