Changes the value of the requesting Accumulator and optionally, increments the counter value of the associated Event object.
void recordValue(unsigned __int64 value, [optional] bool
includeEvent);
Listener *listener = new Listener("sampleApp", "4.0",
NULL, false);
Container *store = listener->lookupContainer("storeName");
Event *creations = store->lookupEvent("document creations");
Accumulator *numCreations = creations->numCreations("number of document
creations");
...
numCreations->recordValue(1, true);
...