CIRCT  19.0.0git
Public Member Functions | Private Attributes | List of all members
esi::MessageData Class Reference

A logical chunk of data representing serialized data. More...

#include <Common.h>

Collaboration diagram for esi::MessageData:
Collaboration graph
[legend]

Public Member Functions

 MessageData ()=default
 Adopts the data vector buffer. More...
 
 MessageData (std::vector< uint8_t > &data)
 
 ~MessageData ()=default
 
const uint8_t * getBytes () const
 
size_t getSize () const
 Get the size of the data in bytes. More...
 

Private Attributes

std::vector< uint8_t > data
 

Detailed Description

A logical chunk of data representing serialized data.

Currently, just a wrapper for a vector of bytes, which is not efficient in terms of memory copying. This will change in the future as will the API.

Definition at line 85 of file Common.h.

Constructor & Destructor Documentation

◆ MessageData() [1/2]

esi::MessageData::MessageData ( )
default

Adopts the data vector buffer.

◆ MessageData() [2/2]

esi::MessageData::MessageData ( std::vector< uint8_t > &  data)
inline

Definition at line 89 of file Common.h.

◆ ~MessageData()

esi::MessageData::~MessageData ( )
default

Member Function Documentation

◆ getBytes()

const uint8_t* esi::MessageData::getBytes ( ) const
inline

Definition at line 92 of file Common.h.

References data.

◆ getSize()

size_t esi::MessageData::getSize ( ) const
inline

Get the size of the data in bytes.

Definition at line 94 of file Common.h.

References data.

Member Data Documentation

◆ data

std::vector<uint8_t> esi::MessageData::data
private

Definition at line 97 of file Common.h.

Referenced by getBytes(), and getSize().


The documentation for this class was generated from the following file: