CodecAccessKind
- Namespace
- Rowles.LeanCorpus.Codecs.CodecKit
- Assembly
- Rowles.LeanCorpus.dll
Describes how a codec body is consumed.
public enum CodecAccessKind
Fields
External = 3The format is owned by an external serialiser or container implementation.
Materialised = 0The complete body may be decoded into an in-memory model.
RandomAccess = 2The reader retains a bounded input and addresses body regions directly.
Streaming = 1The body is processed sequentially without whole-body materialisation.