class Amalgalite::ProgressHandler
A base class for use in creating your own progress handler classes
Public Instance Methods
arity()
click to toggle source
the arity of the call method
# File lib/amalgalite/progress_handler.rb, line 11 def arity() 0 ; end
call()
click to toggle source
Override this method, returning false
if the SQLite should act
as if interrupt!
had been invoked.
# File lib/amalgalite/progress_handler.rb, line 17 def call raise NotImplementedError, "The progress handler call() method must be implemented" end
to_proc()
click to toggle source
# File lib/amalgalite/progress_handler.rb, line 6 def to_proc self end