write method

  1. @override
ShmBlobRef write(
  1. List<int> bytes
)
inherited

Mint a fresh descriptor for bytes: allocate a stable-addressed slot, store the bytes immutably, and return a descriptor whose checksum is the bytes' FNV-1a-64, tagged with this backend's kind.

Implementation

@override
ShmBlobRef write(List<int> bytes) => _arena.write(bytes).withBackend(kind);