module FlightFacade::NodeFacade::Base

Public Instance Methods

find_by_name(name) click to toggle source

Query for a Node object by its name alone @param name [String] the name of the node @return [Node, nil] the node object or nil if it could not resolve the name

# File lib/flight_facade/facades.rb, line 139
def find_by_name(name)
  raise NotImplementedError
end
index_all() click to toggle source

Query for all the available nodes @return [Array<Node>] the list of nodes

# File lib/flight_facade/facades.rb, line 145
def index_all
  raise NotImplementedError
end