namespace AyCode.Services.SignalRs; /// /// Controls how the binary protocol transports serialized data over the network. /// public enum BinaryProtocolMode { /// Standard: serialize → egyben küld/fogad. Bytes = 0, /// Szinkron segment streaming: flush Grow()-ban → chunk-onként hálózatra. Segment = 1, /// Async segment streaming: async serializer + async output (jövő). AsyncSegment = 2, }