// callable. Instead, made RPQueryCurrentState also implement
// Runnable interface and so now is native parameter to
// scheduleWithFixedDelay method instead of wrapped in FutureTask.
//NOPE: final FutureTask task = new FutureTask(action);
final ScheduledFuture scheduledFuture =
this.scheduled.scheduleWithFixedDelay(
action, this.pollDelayMs, this.pollDelayMs,
TimeUnit.MILLISECONDS);
this.currentTasks.put(addrID, scheduledFuture);