class ITopologyProvider

Public Instance Methods

get_path_between(source, destination) click to toggle source
# File lib/providers/interface_topology_provider.rb, line 8
def get_path_between(source, destination)
      raise NotImplementedError, "ITopologyProvider: Implement this method in a child class"
end
get_topology() click to toggle source
# File lib/providers/interface_topology_provider.rb, line 4
def get_topology
   raise NotImplementedError, "ITopologyProvider: Implement this method in a child class"
end