class Hutch::Serializers::Identity

Public Class Methods

binary?() click to toggle source
# File lib/hutch/serializers/identity.rb, line 13
def self.binary? ; false ; end
content_type() click to toggle source
# File lib/hutch/serializers/identity.rb, line 15
def self.content_type ; nil ; end
decode(payload) click to toggle source
# File lib/hutch/serializers/identity.rb, line 9
def self.decode(payload)
  payload
end
encode(payload) click to toggle source
# File lib/hutch/serializers/identity.rb, line 5
def self.encode(payload)
  payload
end