Class: Playwright::ChannelOwner
- Inherits:
-
Object
- Object
- Playwright::ChannelOwner
- Includes:
- EventEmitter
- Defined in:
- lib/playwright/channel_owner.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#_api ⇒ Object
hidden field for caching API instance.
-
#channel ⇒ Object
readonly
Returns the value of attribute channel.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(parent, type, guid, initializer) ⇒ ChannelOwner
constructor
A new instance of ChannelOwner.
-
#inspect ⇒ Object
Suppress long long inspect log and avoid RSpec from hanging up…
- #to_s ⇒ Object
Methods included from EventEmitter
Constructor Details
#initialize(parent, type, guid, initializer) ⇒ ChannelOwner
Returns a new instance of ChannelOwner.
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/playwright/channel_owner.rb', line 20 def initialize(parent, type, guid, initializer) @objects = {} if parent.is_a?(ChannelOwner) @connection = parent.instance_variable_get(:@connection) @connection.send(:update_object_from_channel_owner, guid, self) @parent = parent @parent.send(:update_object_from_child, guid, self) elsif parent.is_a?(Connection) @connection = parent @connection.send(:update_object_from_channel_owner, guid, self) else raise ArgumentError.new('parent must be an instance of Playwright::ChannelOwner or Playwright::Connection') end @channel = Channel.new(@connection, guid, object: self) @type = type @guid = guid @initializer = initializer after_initialize end |
Instance Attribute Details
#_api ⇒ Object
hidden field for caching API instance.
14 15 16 |
# File 'lib/playwright/channel_owner.rb', line 14 def _api @_api end |
#channel ⇒ Object (readonly)
Returns the value of attribute channel.
43 44 45 |
# File 'lib/playwright/channel_owner.rb', line 43 def channel @channel end |
Class Method Details
.from(channel) ⇒ Object
5 6 7 |
# File 'lib/playwright/channel_owner.rb', line 5 def self.from(channel) channel.object end |
.from_nullable(channel) ⇒ Object
9 10 11 |
# File 'lib/playwright/channel_owner.rb', line 9 def self.from_nullable(channel) channel&.object end |
Instance Method Details
#inspect ⇒ Object
Suppress long long inspect log and avoid RSpec from hanging up…
57 58 59 |
# File 'lib/playwright/channel_owner.rb', line 57 def inspect to_s end |
#to_s ⇒ Object
61 62 63 |
# File 'lib/playwright/channel_owner.rb', line 61 def to_s "#<#{@guid}>" end |