A busy time out class for use in Database#define_busy_handler
return false if callcount is > count otherwise sleep for duration milliseconds and then return true
# File lib/amalgalite/busy_timeout.rb, line 40 def call( call_count ) @call_count = call_count return false if ( call_count > @count ) sleep @duration return true end
Generated with the Darkfish Rdoc Generator 2.