Allows the application to dynamically change the aggregation interval of the Listener during application execution.
NOTE The aggregation interval may also be specified by a variety of other sources. For more information, see Configuring the Aggregation Interval.
void setInterval(unsigned int interval);
Listener *listener = new Listener("sampleApp", "4.0",
NULL, false);
listener->setInterval(100000);
...