module HTTPX::Plugins::PushPromise::ResponseMethods

  1. lib/httpx/plugins/push_promise.rb

Methods

Public Instance

  1. mark_as_pushed!
  2. pushed?

Public Instance methods

mark_as_pushed!()
[show source]
   # File lib/httpx/plugins/push_promise.rb
24 def mark_as_pushed!
25   @__pushed = true
26 end
pushed?()
[show source]
   # File lib/httpx/plugins/push_promise.rb
20 def pushed?
21   @__pushed
22 end