GenericServiceClient::EventCallbackEx::EventArgumentsΒΆ

class kanzi::connect::GenericServiceClient::EventCallbackEx::EventArguments

Wrapper class for event arguments. Used in external application bindings.

Public Functions

EventArguments(const map<string, string> &argumentMap)

Construct event arguments from argument map.

vector<string> getKeys()

Get all the keys.

Return

vector of keys currently held.

string getValue(const string &key)

Get value with a key.

Return

value indexed with the key. empty string if not found.

Parameters
  • name: of the key

bool hasKey(const string &key)

Checks whether specific key is present.

Return

true if there is a value with the key.

Parameters
  • key: the key to check