setTimeout(function() {
     processing = false;
     that.checkToProcess();
 }, opts.retryInterval);
 that.enqueue = function(seq, payload) {
     log('change queued ' + seq);
     incomingQueue[seq] = payload;
     that.checkToProcess();
 };