Search in sources :

Example 1 with FlowCacheService

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);
}
Also used : FlowCacheService(org.openkilda.wfm.topology.flowmonitoring.service.FlowCacheService) CalculateFlowLatencyService(org.openkilda.wfm.topology.flowmonitoring.service.CalculateFlowLatencyService) PersistenceContextRequired(org.openkilda.persistence.context.PersistenceContextRequired)

Aggregations

PersistenceContextRequired (org.openkilda.persistence.context.PersistenceContextRequired)1 CalculateFlowLatencyService (org.openkilda.wfm.topology.flowmonitoring.service.CalculateFlowLatencyService)1 FlowCacheService (org.openkilda.wfm.topology.flowmonitoring.service.FlowCacheService)1