Vixen
02b45cc4
csharp
public readonly record struct ChunkInfo

What a stored object looks like, without its payload.

No guide page documents this yet — the page shows what the code says about itself.

Fields and properties (6)

  • public ObjectId Id

    The content id.

  • public ulong TypeId

    Which type wrote it, per TypeId.

  • public ImmutableArray<ObjectId> References

    Other chunks this one needs.

  • public int PayloadLength

    How many bytes the payload occupies uncompressed.

  • public CompressionMethod Compression

    How it is stored.

  • public int StoredLength

    How many bytes it occupies in the backend.

Methods (1)

  • public ChunkInfo(ObjectId Id, ulong TypeId, ImmutableArray<ObjectId> References, int PayloadLength, CompressionMethod Compression, int StoredLength)

    What a stored object looks like, without its payload.

Used by (2)

  • ObjectDatabaseVixen.Core.Serialization
  • ObjectDatabaseTestsVixen.Core.Serialization.Tests