Sets the value of a Meter object counter to the specified amount. The current value may be obtained by calling getValue.
void setValue(long value);
Listener listener = new Listener("sampleApp", "4.0");
Container store = listener.lookupContainer("storeName");
Meter cacheSize = store.lookupMeter("cache size");
cacheSize.setValue(1);
...