Module: HTTPX::Plugins::StreamBidi::ConnectionMethods
- Defined in:
- lib/httpx/plugins/stream_bidi.rb,
sig/plugins/stream_bidi.rbs
Overview
overrides the declaration of @write_buffer, which is now a thread-safe buffer
responding to the same API.
Instance Attribute Summary collapse
-
#signal ⇒ Object
writeonly
Sets the attribute signal.
Instance Method Summary collapse
- #call ⇒ Object
- #initialize ⇒ Object
-
#interests ⇒ Object
rebuffers the
@write_bufferbefore calculating interests.
Instance Attribute Details
#signal=(value) ⇒ Object (writeonly)
Sets the attribute signal
371 372 373 |
# File 'lib/httpx/plugins/stream_bidi.rb', line 371 def signal=(value) @signal = value end |
Instance Method Details
#call ⇒ Object
390 391 392 393 394 |
# File 'lib/httpx/plugins/stream_bidi.rb', line 390 def call return super unless @options.stream && (error = @signal.error) on_error(error) end |
#initialize ⇒ Object
373 374 375 376 377 378 379 |
# File 'lib/httpx/plugins/stream_bidi.rb', line 373 def initialize(*) super return unless @options.stream @write_buffer = BidiBuffer.new(@options.buffer_size) end |
#interests ⇒ Object
rebuffers the @write_buffer before calculating interests.
382 383 384 385 386 387 388 |
# File 'lib/httpx/plugins/stream_bidi.rb', line 382 def interests return super unless @options.stream @write_buffer.rebuffer super end |