class ChannelsSet
Public Instance Methods
delete_all()
click to toggle source
Calls superclass method
OperationSet#delete_all
# File lib/satops/operator.rb, line 442 def delete_all # Flag must be set! super.delete_all if Channels.delete end
fetch_all()
click to toggle source
# File lib/satops/operator.rb, line 447 def fetch_all channels=[] @sat.channel.listAllChannels.each do |channel| channels << Channel.new(Channel.reader(@sat, channel)) end channels end
include?(arg)
click to toggle source
# File lib/satops/operator.rb, line 455 def include?(arg) self.include_label?(arg) end