getNextUpdateTime method

DateTime getNextUpdateTime(
  1. DistanceVectorRoutingTable<T> routingTable
)

Gets the next update time for the routing table

Implementation

DateTime getNextUpdateTime(DistanceVectorRoutingTable<T> routingTable) {
  return routingTable.lastUpdate.add(updateInterval);
}