Class: ChannelsSet
Instance Attribute Summary
Attributes inherited from OperationSet
#list
Instance Method Summary
collapse
#-, #extra, #fetch, #initialize
Constructor Details
This class inherits a constructor from OperationSet
Instance Method Details
#delete_all ⇒ Object
442
443
444
445
|
# File 'lib/satops/operator.rb', line 442
def delete_all
super.delete_all if Channels.delete
end
|
#fetch_all ⇒ Object
447
448
449
450
451
452
453
|
# 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) ⇒ Boolean
455
456
457
|
# File 'lib/satops/operator.rb', line 455
def include?(arg)
self.include_label?(arg)
end
|