Sha256: d687a00aa142fed955e916a2820285ff250b69aa513f641d58d993a78f868730
Contents?: true
Size: 1.63 KB
Versions: 4
Compression:
Stored size: 1.63 KB
Contents
module Acfs # Global Acfs module methods. # module Global # @api private # @return [Runner] # def runner @runner ||= Runner.new Adapter::Typhoeus.new end # @api public # # Run all queued operations. # # @return [undefined] # def run ::ActiveSupport::Notifications.instrument 'acfs.before_run' ::ActiveSupport::Notifications.instrument 'acfs.run' do runner.start end end # @api public # # Configure acfs using given block. # # @return [undefined] # @see Configuration#configure # def configure(&block) Configuration.current.configure &block end # @api public # # Reset all queues, stubs and internal state. # def reset ::ActiveSupport::Notifications.instrument 'acfs.reset' do self.runner.clear Acfs::Stub.clear end end # @api public # # Add an additional callback hook to not loaded resource. # If given resource already loaded callback will be invoked immediately. # # This method will be replaced by explicit callback handling when query methods # return explicit future objects. # # @example # user = MyUser.find 1, &callback_one # Acfs.add_callback(user, &callback_two) # def add_callback(resource, &block) raise ArgumentError.new "Given resource is not an Acfs resource but a: #{resource.class.name}" unless resource.respond_to?(:__callbacks__) return false if block.nil? if resource.loaded? block.call resource else resource.__callbacks__ << block end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
acfs-0.36.0.1.b293 | lib/acfs/global.rb |
acfs-0.36.0 | lib/acfs/global.rb |
acfs-0.35.0.1.b291 | lib/acfs/global.rb |
acfs-0.35.0 | lib/acfs/global.rb |