Class: Puppeteer::NetworkManager::QueuedEventGroup
- Inherits:
-
Object
- Object
- Puppeteer::NetworkManager::QueuedEventGroup
- Defined in:
- lib/puppeteer/network_manager.rb
Instance Attribute Summary collapse
-
#loading_failed_event ⇒ Object
Returns the value of attribute loading_failed_event.
-
#loading_finished_event ⇒ Object
Returns the value of attribute loading_finished_event.
-
#response_received_event ⇒ Object
readonly
Returns the value of attribute response_received_event.
Instance Method Summary collapse
-
#initialize(response_received_event:) ⇒ QueuedEventGroup
constructor
A new instance of QueuedEventGroup.
Constructor Details
#initialize(response_received_event:) ⇒ QueuedEventGroup
Returns a new instance of QueuedEventGroup.
79 80 81 |
# File 'lib/puppeteer/network_manager.rb', line 79 def initialize(response_received_event:) @response_received_event = response_received_event end |
Instance Attribute Details
#loading_failed_event ⇒ Object
Returns the value of attribute loading_failed_event.
83 84 85 |
# File 'lib/puppeteer/network_manager.rb', line 83 def loading_failed_event @loading_failed_event end |
#loading_finished_event ⇒ Object
Returns the value of attribute loading_finished_event.
83 84 85 |
# File 'lib/puppeteer/network_manager.rb', line 83 def loading_finished_event @loading_finished_event end |
#response_received_event ⇒ Object (readonly)
Returns the value of attribute response_received_event.
82 83 84 |
# File 'lib/puppeteer/network_manager.rb', line 82 def response_received_event @response_received_event end |