module Gio::File

Public Instance Methods

each_async(num_files, attributes = nil, flags = nil, io_priority = GLib::PRIORITY_DEFAULT, cancellable = nil, &block) click to toggle source
# File lib/gio2.rb, line 70
def each_async(num_files, attributes = nil, flags = nil,
               io_priority = GLib::PRIORITY_DEFAULT, cancellable = nil,
               &block)
  enumerate_children_async attributes, flags, io_priority, cancellable do |result|
    enumerate_children_finish(result).each_async num_files, io_priority, cancellable, &block
  end
  self
end
eql?(other) click to toggle source
# File lib/gio2.rb, line 64
def eql?(other)
  self === other and self == other
end