use of org.openkilda.wfm.topology.network.service.NetworkBfdLogicalPortService in project open-kilda by telstra.
the class BfdHub method init.
// -- setup --
@Override
protected void init() {
switchOnlineStatusMonitor = new SwitchOnlineStatusMonitor();
endpointStatusMonitor = new EndpointStatusMonitor();
logicalPortService = new NetworkBfdLogicalPortService(this, switchOnlineStatusMonitor, options.getBfdLogicalPortOffset());
sessionService = new NetworkBfdSessionService(persistenceManager, switchOnlineStatusMonitor, endpointStatusMonitor, this);
globalToggleService = new NetworkBfdGlobalToggleService(this, persistenceManager);
requestIdFactory = new TaskIdBasedKeyFactory(getTaskId());
}
Aggregations