Inherits std::vector< char, o2::pmr::polymorphic_allocator< char > >.
buffer used with DPL's DataAllocator DataChunk derives from std::vector with polymorphic allocator and forbids copying, the underlying buffer is of type char and is through DPL and polymorphic memory resource directly allocated in the message memory. Since MessageContext returns the object by reference, the forbidden copy and assignment makes sure that the code can not accidentally use a copy instead reference.
Definition at line 26 of file DataChunk.h.