| Package | Description |
|---|---|
| org.onosproject.mastership |
Set of abstractions for dealing with controller mastership related topics.
|
| org.onosproject.net |
Network model entities & service API definitions.
|
| org.onosproject.net.behaviour |
Abstractions of various device configuration or device adaptation behaviours;
counterpart to the device driver subsystem.
|
| org.onosproject.net.config.basics |
Various basic builtin network configurations.
|
| org.onosproject.net.device |
Infrastructure device model & related services API definitions.
|
| org.onosproject.net.driver |
Set of facilities to allow the platform to be extended with
device specific behaviours and to allow modeling device behaviours while
hiding details of specific device driver implementations.
|
| org.onosproject.net.edge |
Service for interacting with network edge.
|
| org.onosproject.net.flow |
Flow rule model & related services API definitions.
|
| org.onosproject.net.flowobjective |
Abstractions for objective-based flow programming of data plane without
requiring device pipeline structure awareness. This subsystem is
experimental and its interfaces will change in the upcoming release.
|
| org.onosproject.net.group |
Abstractions for interacting with device port groups.
|
| org.onosproject.net.host |
End-station host model & related services API definitions.
|
| org.onosproject.net.intent.constraint |
Definitions of constraints used to refine intent specifications.
|
| org.onosproject.net.link |
Infrastructure link model & related services API definitions.
|
| org.onosproject.net.meter |
Flow meter model and related services.
|
| org.onosproject.net.packet |
Mechanism for processing inbound packets intercepted from the data plane and
for emitting outbound packets onto the data plane.
|
| org.onosproject.net.provider |
Base abstractions related to network entity providers and their brokers.
|
| org.onosproject.net.resource.device |
Services for reserving devices as network resources.
|
| org.onosproject.net.topology |
Network topology model & related services API definitions.
|
| Modifier and Type | Method and Description |
|---|---|
Set<DeviceId> |
MastershipStore.getDevices(NodeId nodeId)
Returns the devices that a controller instance is master of.
|
Set<DeviceId> |
MastershipService.getDevicesOf(NodeId nodeId)
Returns the devices for which a controller is master.
|
| Modifier and Type | Method and Description |
|---|---|
MastershipRole |
MastershipService.getLocalRole(DeviceId deviceId)
Returns the role of the local node for the specified device, without
triggering master selection.
|
NodeId |
MastershipStore.getMaster(DeviceId deviceId)
Returns the master for a device.
|
NodeId |
MastershipService.getMasterFor(DeviceId deviceId)
Returns the current master for a given device.
|
MastershipTerm |
MastershipTermService.getMastershipTerm(DeviceId deviceId)
Returns the term number of mastership change occurred for given device.
|
RoleInfo |
MastershipStore.getNodes(DeviceId deviceId)
Returns the master and backup nodes for a device.
|
RoleInfo |
MastershipService.getNodesFor(DeviceId deviceId)
Returns controllers connected to a given device, in order of
preference.
|
MastershipRole |
MastershipStore.getRole(NodeId nodeId,
DeviceId deviceId)
Returns the role of a device for a specific controller instance.
|
MastershipTerm |
MastershipStore.getTermFor(DeviceId deviceId)
Returns the current master and number of past mastership hand-offs
(terms) for a device.
|
default boolean |
MastershipService.isLocalMaster(DeviceId deviceId)
Returns true if the local controller is the Master for the specified deviceId.
|
CompletableFuture<Void> |
MastershipService.relinquishMastership(DeviceId deviceId)
Abandons mastership of the specified device on the local node thus
forcing selection of a new master.
|
CompletableFuture<MastershipEvent> |
MastershipStore.relinquishRole(NodeId nodeId,
DeviceId deviceId)
Allows a controller instance to give up its current role for a device.
|
CompletableFuture<MastershipRole> |
MastershipStore.requestRole(DeviceId deviceId)
Requests role of the local node for the specified device.
|
CompletableFuture<MastershipRole> |
MastershipService.requestRoleFor(DeviceId deviceId)
Returns the mastership status of the local controller for a given
device forcing master selection if necessary.
|
CompletableFuture<MastershipEvent> |
MastershipStore.setMaster(NodeId nodeId,
DeviceId deviceId)
Sets a device's role for a specified controller instance.
|
CompletableFuture<Void> |
MastershipAdminService.setRole(NodeId instance,
DeviceId deviceId,
MastershipRole role)
Applies the current mastership role for the specified device.
|
CompletableFuture<MastershipEvent> |
MastershipStore.setStandby(NodeId nodeId,
DeviceId deviceId)
Sets a controller instance's mastership role to STANDBY for a device.
|
| Constructor and Description |
|---|
MastershipEvent(MastershipEvent.Type type,
DeviceId device,
RoleInfo info)
Creates an event of a given type and for the specified device,
role information, and the current time.
|
MastershipEvent(MastershipEvent.Type type,
DeviceId device,
RoleInfo info,
long time)
Creates an event of a given type and for the specified device, master,
and time.
|
| Modifier and Type | Field and Description |
|---|---|
static DeviceId |
DeviceId.NONE
Represents either no device, or an unspecified device.
|
| Modifier and Type | Method and Description |
|---|---|
DeviceId |
ConnectPoint.deviceId()
Returns the identifier of the infrastructure device if the connection
point belongs to a network element which is indeed an infrastructure
device.
|
static DeviceId |
DeviceId.deviceId(String string)
Creates a device id using the supplied URI string.
|
static DeviceId |
DeviceId.deviceId(URI uri)
Creates a device id using the supplied URI.
|
DeviceId |
Device.id()
Returns the device identifier.
|
DeviceId |
DefaultDevice.id() |
| Constructor and Description |
|---|
DefaultDevice(ProviderId providerId,
DeviceId id,
Device.Type type,
String manufacturer,
String hwVersion,
String swVersion,
String serialNumber,
org.onlab.packet.ChassisId chassisId,
Annotations... annotations)
Creates a network element attributed to the specified provider.
|
HostLocation(DeviceId deviceId,
PortNumber portNumber,
long time)
Creates a new host location using the supplied device & port.
|
| Modifier and Type | Method and Description |
|---|---|
DeviceId |
DefaultBridgeDescription.cotrollerDeviceId() |
DeviceId |
BridgeDescription.cotrollerDeviceId()
Returns controller identifier that this bridge belongs to.
|
DeviceId |
DefaultBridgeDescription.deviceId() |
DeviceId |
BridgeDescription.deviceId()
Returns bridge identifier .
|
| Modifier and Type | Method and Description |
|---|---|
void |
Pipeliner.init(DeviceId deviceId,
PipelinerContext context)
Initializes the driver with context required for its operation.
|
| Constructor and Description |
|---|
DefaultBridgeDescription(BridgeName name,
DeviceId controllerId,
DeviceId deviceId,
SparseAnnotations... annotations) |
| Modifier and Type | Field and Description |
|---|---|
static SubjectFactory<DeviceId> |
SubjectFactories.DEVICE_SUBJECT_FACTORY |
| Modifier and Type | Method and Description |
|---|---|
DeviceEvent |
DeviceStore.createOrUpdateDevice(ProviderId providerId,
DeviceId deviceId,
DeviceDescription deviceDescription)
Creates a new infrastructure device, or updates an existing one using
the supplied device description.
|
void |
DeviceProviderService.deviceConnected(DeviceId deviceId,
DeviceDescription deviceDescription)
Signals the core that a device has connected or has been detected somehow.
|
void |
DeviceProviderService.deviceDisconnected(DeviceId deviceId)
Signals the core that a device has disconnected or is no longer reachable.
|
Device |
DeviceStore.getDevice(DeviceId deviceId)
Returns the device with the specified identifier.
|
Device |
DeviceService.getDevice(DeviceId deviceId)
Returns the device with the specified identifier.
|
Port |
DeviceStore.getPort(DeviceId deviceId,
PortNumber portNumber)
Returns the specified device port.
|
Port |
DeviceService.getPort(DeviceId deviceId,
PortNumber portNumber)
Returns the port with the specified number and hosted by the given device.
|
List<PortStatistics> |
DeviceStore.getPortDeltaStatistics(DeviceId deviceId)
Returns the list of delta port statistics of the specified device.
|
List<PortStatistics> |
DeviceService.getPortDeltaStatistics(DeviceId deviceId)
Returns the list of port delta statistics associated with the device.
|
List<Port> |
DeviceStore.getPorts(DeviceId deviceId)
Returns the list of ports that belong to the specified device.
|
List<Port> |
DeviceService.getPorts(DeviceId deviceId)
Returns the list of ports associated with the device.
|
List<PortStatistics> |
DeviceStore.getPortStatistics(DeviceId deviceId)
Returns the list of port statistics of the specified device.
|
List<PortStatistics> |
DeviceService.getPortStatistics(DeviceId deviceId)
Returns the list of port statistics associated with the device.
|
MastershipRole |
DeviceService.getRole(DeviceId deviceId)
Returns the current mastership role for the specified device.
|
Timestamp |
DeviceClockService.getTimestamp(DeviceId deviceId)
Returns a new timestamp for the specified deviceId.
|
boolean |
DeviceStore.isAvailable(DeviceId deviceId)
Indicates whether the specified device is available/online.
|
boolean |
DeviceService.isAvailable(DeviceId deviceId)
Indicates whether or not the device is presently online and available.
|
boolean |
DeviceProvider.isReachable(DeviceId deviceId)
Checks the reachability (connectivity) of a device from this provider.
|
boolean |
DeviceClockService.isTimestampAvailable(DeviceId deviceId)
Checks if this service can issue Timestamp for specified device.
|
DeviceEvent |
DeviceStore.markOffline(DeviceId deviceId)
Removes the specified infrastructure device.
|
void |
DeviceProviderService.portStatusChanged(DeviceId deviceId,
PortDescription portDescription)
Used to notify the core about port status change of a single port.
|
void |
DeviceProviderService.receivedRoleReply(DeviceId deviceId,
MastershipRole requested,
MastershipRole response)
Notifies the core about the result of a RoleRequest sent to a device.
|
DeviceEvent |
DeviceStore.removeDevice(DeviceId deviceId)
Administratively removes the specified device from the store.
|
void |
DeviceAdminService.removeDevice(DeviceId deviceId)
Removes the device with the specified identifier.
|
void |
DeviceProvider.roleChanged(DeviceId deviceId,
MastershipRole newRole)
Notifies the provider of a mastership role change for the specified
device as decided by the core.
|
DefaultPortStatistics.Builder |
DefaultPortStatistics.Builder.setDeviceId(DeviceId deviceId)
Sets the device identifier.
|
void |
DeviceProvider.triggerProbe(DeviceId deviceId)
Triggers an asynchronous probe of the specified device, intended to
determine whether the device is present or not.
|
void |
DeviceProviderService.updatePorts(DeviceId deviceId,
List<PortDescription> portDescriptions)
Sends information about all ports of a device.
|
List<DeviceEvent> |
DeviceStore.updatePorts(ProviderId providerId,
DeviceId deviceId,
List<PortDescription> portDescriptions)
Updates the ports of the specified infrastructure device using the given
list of port descriptions.
|
void |
DeviceProviderService.updatePortStatistics(DeviceId deviceId,
Collection<PortStatistics> portStatistics)
Sends statistics about all ports of a device.
|
DeviceEvent |
DeviceStore.updatePortStatistics(ProviderId providerId,
DeviceId deviceId,
Collection<PortStatistics> portStats)
Updates the port statistics of the specified device using the give port
statistics.
|
DeviceEvent |
DeviceStore.updatePortStatus(ProviderId providerId,
DeviceId deviceId,
PortDescription portDescription)
Updates the port status of the specified infrastructure device using the
given port description.
|
| Modifier and Type | Method and Description |
|---|---|
DeviceId |
DriverData.deviceId()
Returns the device identifier.
|
DeviceId |
DefaultDriverData.deviceId() |
| Modifier and Type | Method and Description |
|---|---|
DriverHandler |
DriverService.createHandler(DeviceId deviceId,
String... credentials)
Creates a new driver handler for interacting with the specified device.
|
Driver |
DriverService.getDriver(DeviceId deviceId)
Returns the driver for the specified device.
|
| Constructor and Description |
|---|
DefaultDriverData(Driver driver,
DeviceId deviceId)
Creates new driver data.
|
| Modifier and Type | Method and Description |
|---|---|
void |
EdgePortService.emitPacket(DeviceId deviceId,
ByteBuffer data,
Optional<TrafficTreatment> treatment)
Emits the specified packet, with optional treatment to all edge ports.
|
Iterable<ConnectPoint> |
EdgePortService.getEdgePoints(DeviceId deviceId)
Returns a collection of all edge point for the specified device.
|
| Modifier and Type | Method and Description |
|---|---|
DeviceId |
FlowRuleBatchOperation.deviceId()
Deprecated.
|
DeviceId |
FlowRuleBatchEvent.deviceId()
Deprecated.
Returns the deviceId for this batch.
|
DeviceId |
FlowRule.deviceId()
Returns the identity of the device where this rule applies.
|
DeviceId |
DefaultFlowRule.deviceId() |
DeviceId |
CompletedBatchOperation.deviceId() |
| Modifier and Type | Method and Description |
|---|---|
FlowRuleBatchOperation |
FlowRuleBatchRequest.asBatchOperation(DeviceId deviceId)
Deprecated.
|
FlowRule.Builder |
FlowRule.Builder.forDevice(DeviceId deviceId)
Sets the deviceId for this flow rule.
|
FlowRule.Builder |
DefaultFlowRule.Builder.forDevice(DeviceId deviceId) |
Iterable<FlowEntry> |
FlowRuleStore.getFlowEntries(DeviceId deviceId)
Returns the flow entries associated with a device.
|
Iterable<FlowEntry> |
FlowRuleService.getFlowEntries(DeviceId deviceId)
Returns the collection of flow entries applied on the specified device.
|
void |
FlowRuleProviderService.pushFlowMetrics(DeviceId deviceId,
Iterable<FlowEntry> flowEntries)
Pushes the collection of flow entries currently applied on the given
device.
|
static FlowRuleBatchEvent |
FlowRuleBatchEvent.requested(FlowRuleBatchRequest request,
DeviceId deviceId)
Deprecated.
Constructs a new FlowRuleBatchEvent.
|
| Constructor and Description |
|---|
CompletedBatchOperation(boolean success,
Set<? extends FlowRule> failures,
DeviceId deviceId)
Creates a new batch completion result.
|
CompletedBatchOperation(boolean success,
Set<? extends FlowRule> failures,
Set<Long> failedIds,
DeviceId deviceId)
Creates a new batch completion result.
|
DefaultFlowRule(DeviceId deviceId,
TrafficSelector selector,
TrafficTreatment treatment,
int priority,
ApplicationId appId,
GroupId groupId,
int timeout,
boolean permanent,
FlowRuleExtPayLoad payLoad)
Support for the third party flow rule.
|
DefaultFlowRule(DeviceId deviceId,
TrafficSelector selector,
TrafficTreatment treatment,
int priority,
ApplicationId appId,
int timeout,
boolean permanent,
FlowRuleExtPayLoad payLoad)
Support for the third party flow rule.
|
FlowRuleBatchOperation(Collection<FlowRuleBatchEntry> operations,
DeviceId deviceId,
long flowOperationId)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
void |
FlowObjectiveService.filter(DeviceId deviceId,
FilteringObjective filteringObjective)
Installs the filtering rules onto the specified device.
|
void |
FlowObjectiveService.forward(DeviceId deviceId,
ForwardingObjective forwardingObjective)
Installs the forwarding rules onto the specified device.
|
void |
FlowObjectiveService.next(DeviceId deviceId,
NextObjective nextObjective)
Installs the next hop elements into the specified device.
|
| Modifier and Type | Method and Description |
|---|---|
DeviceId |
GroupDescription.deviceId()
Returns device identifier on which this group object is created.
|
DeviceId |
DefaultGroupDescription.deviceId()
Returns device identifier on which this group object is created.
|
| Modifier and Type | Method and Description |
|---|---|
void |
GroupService.addBucketsToGroup(DeviceId deviceId,
GroupKey oldCookie,
GroupBuckets buckets,
GroupKey newCookie,
ApplicationId appId)
Appends buckets to existing group.
|
void |
GroupStore.deleteGroupDescription(DeviceId deviceId,
GroupKey appCookie)
Triggers deleting the existing group entry.
|
void |
GroupStore.deviceInitialAuditCompleted(DeviceId deviceId,
boolean completed)
Indicates the first group audit is completed.
|
boolean |
GroupStore.deviceInitialAuditStatus(DeviceId deviceId)
Retrieves the initial group audit status for a device.
|
Iterable<Group> |
GroupStore.getExtraneousGroups(DeviceId deviceId)
Returns the extraneous groups associated with a device.
|
Group |
GroupStore.getGroup(DeviceId deviceId,
GroupId groupId)
Returns the stored group entry for an id.
|
Group |
GroupStore.getGroup(DeviceId deviceId,
GroupKey appCookie)
Returns the stored group entry.
|
Group |
GroupService.getGroup(DeviceId deviceId,
GroupKey appCookie)
Returns a group object associated to an application cookie.
|
int |
GroupStore.getGroupCount(DeviceId deviceId)
Returns the number of groups for the specified device in the store.
|
Iterable<Group> |
GroupStore.getGroups(DeviceId deviceId)
Returns the groups associated with a device.
|
Iterable<Group> |
GroupService.getGroups(DeviceId deviceId)
Returns all groups associated with the given device.
|
Iterable<Group> |
GroupService.getGroups(DeviceId deviceId,
ApplicationId appId)
Retrieves all groups created by an application in the specified device
as seen by current controller instance.
|
void |
GroupStore.groupOperationFailed(DeviceId deviceId,
GroupOperation operation)
Indicates the group operations failed.
|
void |
GroupProviderService.groupOperationFailed(DeviceId deviceId,
GroupOperation operation)
Notifies core if any failure from data plane during group operations.
|
void |
GroupProvider.performGroupOperation(DeviceId deviceId,
GroupOperations groupOps)
Performs a batch of group operation in the specified device with the
specified parameters.
|
void |
GroupStore.pushGroupMetrics(DeviceId deviceId,
Collection<Group> groupEntries)
Submits the group metrics to store for a given device ID.
|
void |
GroupProviderService.pushGroupMetrics(DeviceId deviceId,
Collection<Group> groupEntries)
Pushes the collection of group detected in the data plane along
with statistics.
|
void |
GroupService.removeBucketsFromGroup(DeviceId deviceId,
GroupKey oldCookie,
GroupBuckets buckets,
GroupKey newCookie,
ApplicationId appId)
Removes buckets from existing group.
|
void |
GroupService.removeGroup(DeviceId deviceId,
GroupKey appCookie,
ApplicationId appId)
Deletes a group associated to an application cookie.
|
void |
GroupStore.updateGroupDescription(DeviceId deviceId,
GroupKey oldAppCookie,
GroupStore.UpdateType type,
GroupBuckets newBuckets,
GroupKey newAppCookie)
Updates the existing group entry with the information
from group description.
|
| Constructor and Description |
|---|
DefaultGroup(GroupId id,
DeviceId deviceId,
GroupDescription.Type type,
GroupBuckets buckets)
Default group object constructor with the available information
from data plane.
|
DefaultGroupDescription(DeviceId deviceId,
GroupDescription.Type type,
GroupBuckets buckets)
Constructor to be used by group subsystem internal components.
|
DefaultGroupDescription(DeviceId deviceId,
GroupDescription.Type type,
GroupBuckets buckets,
GroupKey appCookie,
Integer groupId,
ApplicationId appId)
Constructor to be used by north bound applications.
|
| Modifier and Type | Method and Description |
|---|---|
Set<Host> |
HostStore.getConnectedHosts(DeviceId deviceId)
Returns the set of hosts whose location falls on the given device.
|
Set<Host> |
HostService.getConnectedHosts(DeviceId deviceId)
Returns the set of hosts whose most recent location is the specified
infrastructure device.
|
| Modifier and Type | Method and Description |
|---|---|
Set<DeviceId> |
ObstacleConstraint.obstacles()
Returns the obstacle device ids.
|
List<DeviceId> |
WaypointConstraint.waypoints() |
| Constructor and Description |
|---|
ObstacleConstraint(DeviceId... obstacles)
Creates a new constraint that the specified device are not passed through.
|
WaypointConstraint(DeviceId... waypoints)
Creates a new waypoint constraint.
|
| Modifier and Type | Method and Description |
|---|---|
Set<Link> |
LinkStore.getDeviceEgressLinks(DeviceId deviceId)
Returns all links egressing from the specified device.
|
Set<Link> |
LinkService.getDeviceEgressLinks(DeviceId deviceId)
Returns set of all infrastructure links leading from the specified device.
|
Set<Link> |
LinkStore.getDeviceIngressLinks(DeviceId deviceId)
Returns all links ingressing from the specified device.
|
Set<Link> |
LinkService.getDeviceIngressLinks(DeviceId deviceId)
Returns set of all infrastructure links leading to the specified device.
|
Set<Link> |
LinkService.getDeviceLinks(DeviceId deviceId)
Returns set of all infrastructure links leading to and from the
specified device.
|
void |
LinkProviderService.linksVanished(DeviceId deviceId)
Signals that infrastructure links associated with the specified
device have vanished.
|
void |
LinkAdminService.removeLinks(DeviceId deviceId)
Removes all infrastructure links leading to and from the
specified device.
|
| Modifier and Type | Method and Description |
|---|---|
DeviceId |
MeterRequest.deviceId()
The target device for this meter.
|
DeviceId |
Meter.deviceId()
The target device for this meter.
|
DeviceId |
DefaultMeterRequest.deviceId() |
DeviceId |
DefaultMeter.deviceId() |
| Modifier and Type | Method and Description |
|---|---|
MeterRequest.Builder |
MeterRequest.Builder.forDevice(DeviceId deviceId)
Assigns the target device for this meter.
|
Meter.Builder |
Meter.Builder.forDevice(DeviceId deviceId)
Assigns the target device for this meter.
|
MeterRequest.Builder |
DefaultMeterRequest.Builder.forDevice(DeviceId deviceId) |
Meter.Builder |
DefaultMeter.Builder.forDevice(DeviceId deviceId) |
void |
MeterProvider.performMeterOperation(DeviceId deviceId,
MeterOperation meterOp)
Performs a meter operation on the specified device with the
specified parameters.
|
void |
MeterProvider.performMeterOperation(DeviceId deviceId,
MeterOperations meterOps)
Performs a batch of meter operation on the specified device with the
specified parameters.
|
void |
MeterProviderService.pushMeterMetrics(DeviceId deviceId,
Collection<Meter> meterEntries)
Pushes the collection of meters observed on the data plane as
well as their associated statistics.
|
| Modifier and Type | Method and Description |
|---|---|
DeviceId |
OutboundPacket.sendThrough()
Returns the identity of a device through which this packet should be
sent.
|
DeviceId |
DefaultOutboundPacket.sendThrough() |
| Constructor and Description |
|---|
DefaultOutboundPacket(DeviceId sendThrough,
TrafficTreatment treatment,
ByteBuffer data)
Creates an immutable outbound packet.
|
| Modifier and Type | Method and Description |
|---|---|
protected P |
AbstractProviderRegistry.getProvider(DeviceId deviceId)
Returns the provider for the specified device ID based on URI scheme.
|
| Modifier and Type | Method and Description |
|---|---|
Set<Port> |
DeviceResourceStore.getFreePorts(DeviceId deviceId)
Returns unallocated ports on the given device.
|
| Modifier and Type | Method and Description |
|---|---|
DeviceId |
TopologyVertex.deviceId()
Returns the associated infrastructure device identification.
|
DeviceId |
DefaultTopologyVertex.deviceId() |
| Modifier and Type | Method and Description |
|---|---|
Set<DeviceId> |
TopologyStore.getClusterDevices(Topology topology,
TopologyCluster cluster)
Returns the cluster of the specified topology.
|
Set<DeviceId> |
TopologyService.getClusterDevices(Topology topology,
TopologyCluster cluster)
Returns the set of devices that belong to the specified cluster.
|
| Modifier and Type | Method and Description |
|---|---|
Set<Path> |
TopologyStore.getPaths(Topology topology,
DeviceId src,
DeviceId dst)
Returns the set of pre-computed shortest paths between src and dest.
|
Set<Path> |
TopologyService.getPaths(Topology topology,
DeviceId src,
DeviceId dst)
Returns the set of all shortest paths, precomputed in terms of hop-count,
between the specified source and destination devices.
|
Set<Path> |
TopologyStore.getPaths(Topology topology,
DeviceId src,
DeviceId dst,
LinkWeight weight)
Computes and returns the set of shortest paths between src and dest.
|
Set<Path> |
TopologyService.getPaths(Topology topology,
DeviceId src,
DeviceId dst,
LinkWeight weight)
Returns the set of all shortest paths, computed using the supplied
edge-weight entity, between the specified source and destination devices.
|
| Constructor and Description |
|---|
DefaultTopologyVertex(DeviceId deviceId)
Creates a new topology vertex.
|
Copyright © 2015. All rights reserved.