use of org.openkilda.wfm.topology.flowmonitoring.service.FlowCacheService in project open-kilda by telstra.
the class FlowCacheBolt method init.
@PersistenceContextRequired(requiresNew = true)
protected void init() {
flowCacheService = new FlowCacheService(persistenceManager, Clock.systemUTC(), flowRttStatsExpirationTime, this);
calculateFlowLatencyService = new CalculateFlowLatencyService(this);
}
Aggregations