def queueUpdate()

in app/utils/ScheduledAgent.scala [135:145]


  def queueUpdate(update: ScheduledAgentUpdate[T]): Unit = {
    agent sendOff { lastValue =>
      try {
        update.block(lastValue)
      } catch {
        case t: Throwable =>
          log.warn("Failed to update on schedule", t)
          lastValue
      }
    }
  }