Class: WWW::Mechanize::Chain::PreConnectHook

Inherits:
Object
  • Object
show all
Includes:
Handler
Defined in:
lib/www/mechanize/chain/pre_connect_hook.rb

Direct Known Subclasses

PostConnectHook

Instance Attribute Summary collapse

Attributes included from Handler

#chain

Instance Method Summary collapse

Constructor Details

#initializePreConnectHook

Returns a new instance of PreConnectHook.



8
9
10
# File 'lib/www/mechanize/chain/pre_connect_hook.rb', line 8

def initialize
  @hooks = []
end

Instance Attribute Details

#hooksObject

Returns the value of attribute hooks.



7
8
9
# File 'lib/www/mechanize/chain/pre_connect_hook.rb', line 7

def hooks
  @hooks
end

Instance Method Details

#handle(ctx, params) ⇒ Object



12
13
14
15
# File 'lib/www/mechanize/chain/pre_connect_hook.rb', line 12

def handle(ctx, params)
  @hooks.each { |hook| hook.call(params) }
  super
end