alshabib
Committed by Gerrit Code Review

setting periodic calls to reasonable intervals

Change-Id: I92f790ff3ea632d39bf6656201addf0346dcbd98
......@@ -25,7 +25,7 @@ import java.util.concurrent.Future;
*/
public interface FlowRuleProvider extends Provider {
static final int POLL_INTERVAL = 2;
static final int POLL_INTERVAL = 10;
/**
* Instructs the provider to apply the specified flow rules to their
......
......@@ -90,7 +90,7 @@ public class TopologyViewWebSocket
private static final String APP_ID = "org.onosproject.gui";
private static final long TRAFFIC_FREQUENCY = 2000;
private static final long TRAFFIC_FREQUENCY = 5000;
private static final long SUMMARY_FREQUENCY = 30000;
private static final Comparator<? super ControllerNode> NODE_COMPARATOR =
......