start method
void
start()
Start the processing queue, resending requests every interval
.
Stops the existing timer if it was already running.
Implementation
void start() {
stop();
logger.finer('Queue started');
_processingInBackground = false;
_timer = Timer.periodic(processingInterval, _process);
}