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
85 def self.decode(response)
86   Inflater.new(response)
87 end
encode(*args, **kwargs)
[show source]
   # File lib/httpx/plugins/grpc/grpc_encoding.rb
81 def self.encode(*args, **kwargs)
82   Deflater.new(*args, **kwargs)
83 end