Sha256: 824b14a9e63193184eb729d53488552b1d83730931fff3ff2f94c52b8a483ce1

Contents?: true

Size: 888 Bytes

Versions: 6817

Compression:

Stored size: 888 Bytes

Contents

module Typhoeus
  class Hydra

    # This module handles the blocked connection request mode on
    # the hydra side, where only stubbed requests
    # are allowed.
    # Connection blocking needs to be turned on:
    #   Typhoeus.configure do |config|
    #     config.block_connection = true
    #   end
    #
    # When trying to do real requests a NoStub error
    # is raised.
    #
    # @api private
    module BlockConnection

      # Overrides add in order to check before if block connection
      # is turned on. If thats the case a NoStub error is
      # raised.
      #
      # @example Add the request.
      #   hydra.add(request)
      #
      # @param [ Request ] request The request to enqueue.
      def add(request)
        if request.blocked?
          raise Typhoeus::Errors::NoStub.new(request)
        else
          super
        end
      end
    end
  end
end

Version data entries

6,817 entries across 6,814 versions & 27 rubygems

Version Path
typhoeus-0.7.1 lib/typhoeus/hydra/block_connection.rb
typhoeus-0.7.0 lib/typhoeus/hydra/block_connection.rb
typhoeus-0.7.0.pre1 lib/typhoeus/hydra/block_connection.rb
typhoeus-0.6.9 lib/typhoeus/hydra/block_connection.rb
typhoeus-0.6.8 lib/typhoeus/hydra/block_connection.rb
typhoeus-0.6.7 lib/typhoeus/hydra/block_connection.rb
typhoeus-0.6.6 lib/typhoeus/hydra/block_connection.rb
typhoeus-0.6.5 lib/typhoeus/hydra/block_connection.rb
typhoeus-0.6.4 lib/typhoeus/hydra/block_connection.rb
typhoeus-0.6.3 lib/typhoeus/hydra/block_connection.rb
typhoeus-0.6.2 lib/typhoeus/hydra/block_connection.rb
typhoeus-0.6.1 lib/typhoeus/hydra/block_connection.rb
typhoeus-0.6.0 lib/typhoeus/hydra/block_connection.rb
typhoeus-0.6 lib/typhoeus/hydra/block_connection.rb
typhoeus-0.5.4 lib/typhoeus/hydra/block_connection.rb
typhoeus-0.5.3 lib/typhoeus/hydra/block_connection.rb
typhoeus-0.5.2 lib/typhoeus/hydra/block_connection.rb