Lexis
1.0.0
Vocabulary of events and shared objects for BBP and HBP software
|
Public Types | |
typedef ::zerobuf::Vector< char > | Host |
typedef ::zerobuf::Vector< char > | Id |
Public Member Functions | |
Stream::Host & | getHost () |
Get a reference to the char dynamic member. More... | |
const Stream::Host & | getHost () const |
void | setHost (char const *value, size_t size) |
Set the value of the char dynamic object from a char* and size. More... | |
std::string | getHostString () const |
void | setHost (const std::string &value) |
Set the value of the char dynamic object from a std::string. More... | |
Stream::Id & | getId () |
Get a reference to the char dynamic member. More... | |
const Stream::Id & | getId () const |
void | setId (char const *value, size_t size) |
Set the value of the char dynamic object from a char* and size. More... | |
std::string | getIdString () const |
void | setId (const std::string &value) |
Set the value of the char dynamic object from a std::string. More... | |
bool | getEnabled () const |
void | setEnabled (bool value) |
Set the value of the bool fixed size member. More... | |
uint16_t | getPort () const |
void | setPort (uint16_t value) |
Set the value of the uint16_t fixed size member. More... | |
bool | getCompression () const |
void | setCompression (bool value) |
Set the value of the bool fixed size member. More... | |
uint16_t | getQuality () const |
void | setQuality (uint16_t value) |
Set the value of the uint16_t fixed size member. More... | |
void | compact (float threshold=0.1f) final |
Stream (const std::string &hostValue, const bool &enabledValue, const std::string &idValue, const uint16_t &portValue, const bool &compressionValue, const uint16_t &qualityValue) | |
Stream (const Stream &rhs) | |
Stream (Stream &&rhs) noexcept | |
Stream (const ::zerobuf::Zerobuf &rhs) | |
Stream (::zerobuf::AllocatorPtr allocator) | |
Stream & | operator= (const Stream &rhs) |
Stream & | operator= (Stream &&rhs) |
std::string | getSchema () const final |
std::string | getTypeName () const final |
::zerobuf::uint128_t | getTypeIdentifier () const final |
size_t | getZerobufStaticSize () const final |
size_t | getZerobufNumDynamics () const final |
void | _parseJSON (const Json::Value &json) final |
void | _createJSON (Json::Value &json) const final |
Stream::Host& lexis::render::Stream::getHost | ( | ) |
Get a reference to the char dynamic member.
WARNING: If the reference is used to modify the object, notifyChanged() needs to be explicitly called afterwards.
Stream::Id& lexis::render::Stream::getId | ( | ) |
Get a reference to the char dynamic member.
WARNING: If the reference is used to modify the object, notifyChanged() needs to be explicitly called afterwards.
void lexis::render::Stream::setCompression | ( | bool | value | ) |
Set the value of the bool fixed size member.
notifyChanged() is internally called after the change has been done.
value | the bool value to be set in the current object |
void lexis::render::Stream::setEnabled | ( | bool | value | ) |
Set the value of the bool fixed size member.
notifyChanged() is internally called after the change has been done.
value | the bool value to be set in the current object |
void lexis::render::Stream::setHost | ( | char const * | value, |
size_t | size | ||
) |
Set the value of the char dynamic object from a char* and size.
notifyChanged() is internally called after the change has been done.
value | a pointer to the data to be set in the current object |
size | the size of the data to be set |
void lexis::render::Stream::setHost | ( | const std::string & | value | ) |
Set the value of the char dynamic object from a std::string.
notifyChanged() is internally called after the change has been done.
value | a std::string with the data to be set in the current object |
void lexis::render::Stream::setId | ( | char const * | value, |
size_t | size | ||
) |
Set the value of the char dynamic object from a char* and size.
notifyChanged() is internally called after the change has been done.
value | a pointer to the data to be set in the current object |
size | the size of the data to be set |
void lexis::render::Stream::setId | ( | const std::string & | value | ) |
Set the value of the char dynamic object from a std::string.
notifyChanged() is internally called after the change has been done.
value | a std::string with the data to be set in the current object |
void lexis::render::Stream::setPort | ( | uint16_t | value | ) |
Set the value of the uint16_t fixed size member.
notifyChanged() is internally called after the change has been done.
value | the uint16_t value to be set in the current object |
void lexis::render::Stream::setQuality | ( | uint16_t | value | ) |
Set the value of the uint16_t fixed size member.
notifyChanged() is internally called after the change has been done.
value | the uint16_t value to be set in the current object |