Module: MiscHacks::IOMixin

Defined in:
lib/mischacks.rb

Instance Method Summary collapse

Instance Method Details

#best_datasyncObject



161
162
163
164
165
166
167
168
169
170
# File 'lib/mischacks.rb', line 161

def best_datasync
  meths = [:fdatasync, :fsync, :flush]

  begin
    send meths.shift
  rescue NoMethodError, NotImplementedError
    retry unless meths.empty?
    raise
  end
end