module HTTPX::Transcoder::GRPCEncoding

  1. lib/httpx/plugins/grpc/grpc_encoding.rb

Methods

Public Class

  1. decode
  2. encode

Public Class methods

decode(response)
[show source]
   # File lib/httpx/plugins/grpc/grpc_encoding.rb
83 def self.decode(response)
84   Inflater.new(response)
85 end
encode(*args, **kwargs)
[show source]
   # File lib/httpx/plugins/grpc/grpc_encoding.rb
79 def self.encode(*args, **kwargs)
80   Deflater.new(*args, **kwargs)
81 end