enum

HTTP2::Client::ReplayPolicy

Inherits Enum < Comparable < Value < Object

Opt-in policy for replaying only requests that the peer proves were not processed through GOAWAY or RST_STREAM(REFUSED_STREAM).

Constants

Never = 0
Idempotent = 1
AnyRequest = 2

Instance methods

allows?(method : String) : Bool
Source
any_request?

Returns true if this enum value equals AnyRequest

Source
idempotent?

Returns true if this enum value equals Idempotent

Source
never?

Returns true if this enum value equals Never

Source