Indicates the beginning of the time interval that is to be measured (accumulated) for the Duration object. Once the interval has completed, the application will call the stop method.
void start([optional] Accumulator accumulatorName);
Listener listener = new Listener("sampleApp", "4.0");
Duration readTime = listener.durationFactory("duration of read");
readTime.start();
...