Package org.opendaylight.algo.impl
Class PathComputationServer
java.lang.Object
org.opendaylight.algo.impl.PathComputationServer
- All Implemented Interfaces:
AutoCloseable
,PathComputationProvider
@Singleton
public final class PathComputationServer
extends Object
implements AutoCloseable, PathComputationProvider
Path Computation Algorithms provider.
- Author:
- Olivier Dugeon
-
Constructor Summary
ConstructorDescriptionPathComputationServer
(org.opendaylight.mdsal.binding.api.RpcProviderService rpcService, ConnectedGraphProvider graphProvider) -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
getPathComputationAlgorithm
(ConnectedGraph runningGraph, AlgorithmType algorithmType) Return Path Computation Algorithm object that corresponds to the requested type.
-
Constructor Details
-
PathComputationServer
@Inject public PathComputationServer(org.opendaylight.mdsal.binding.api.RpcProviderService rpcService, ConnectedGraphProvider graphProvider)
-
-
Method Details
-
close
@PreDestroy public void close()- Specified by:
close
in interfaceAutoCloseable
-
getPathComputationAlgorithm
public PathComputationAlgorithm getPathComputationAlgorithm(ConnectedGraph runningGraph, AlgorithmType algorithmType) Description copied from interface:PathComputationProvider
Return Path Computation Algorithm object that corresponds to the requested type.- Specified by:
getPathComputationAlgorithm
in interfacePathComputationProvider
- Parameters:
runningGraph
- Connected Graph on which path computation will runalgorithmType
- Algorithm supported types are: 'SPF', 'CSPF' and 'SAMCRA'- Returns:
- PathComputationAlgorithm
-