Add: PrimitiveRequest takes now RequestContext instead of requestId

This commit is contained in:
Lars Simon Winzer
2026-03-24 18:11:37 +01:00
parent cdd5de620b
commit edc1b29884
@@ -3,4 +3,5 @@ package ch.unibas.dmi.dbis.cs108.casono.server.network.parser;
import java.util.List;
/** Created by the ProtocolParser to allow easy access to the request contents */
public record PrimitiveRequest(int requestId, String command, List<Parameter> parameters) {}
public record PrimitiveRequest(
RequestContext context, String command, List<Parameter> parameters) {}