use of org.openkilda.wfm.topology.nbworker.services.FlowOperationsService in project open-kilda by telstra.
the class LinkOperationsBolt method init.
@Override
public void init() {
super.init();
linkOperationsService = new LinkOperationsService(this, repositoryFactory, transactionManager);
flowOperationsService = new FlowOperationsService(repositoryFactory, transactionManager);
linkPropsRepository = repositoryFactory.createLinkPropsRepository();
islRepository = repositoryFactory.createIslRepository();
}
use of org.openkilda.wfm.topology.nbworker.services.FlowOperationsService in project open-kilda by telstra.
the class FlowPatchBolt method init.
@Override
public void init() {
super.init();
this.flowOperationsService = new FlowOperationsService(persistenceManager.getRepositoryFactory(), persistenceManager.getTransactionManager());
}
use of org.openkilda.wfm.topology.nbworker.services.FlowOperationsService in project open-kilda by telstra.
the class SwitchOperationsBolt method init.
@Override
public void init() {
super.init();
this.switchOperationsService = new SwitchOperationsService(repositoryFactory, transactionManager, this, this);
this.flowOperationsService = new FlowOperationsService(repositoryFactory, transactionManager);
}
use of org.openkilda.wfm.topology.nbworker.services.FlowOperationsService in project open-kilda by telstra.
the class FlowOperationsBolt method init.
@Override
public void init() {
super.init();
this.flowOperationsService = new FlowOperationsService(repositoryFactory, transactionManager);
}
use of org.openkilda.wfm.topology.nbworker.services.FlowOperationsService in project open-kilda by telstra.
the class FlowMeterModifyFsm method initialized.
protected void initialized(FlowMeterModifyState from, FlowMeterModifyState to, FlowMeterModifyEvent event, Object context) {
log.info("Key: {}; FSM initialized", key);
flowId = request.getFlowId();
service = new FlowOperationsService(persistenceManager.getRepositoryFactory(), persistenceManager.getTransactionManager());
}
Aggregations