Sha256: 4d6f90d6adcde5f6d7e9808aa3c9ff8916ccf416d628732b8b5834e77579970e
Contents?: true
Size: 900 Bytes
Versions: 96
Compression:
Stored size: 900 Bytes
Contents
module Elasticsearch module Transport module Transport module Serializer # An abstract class for implementing serializer implementations # module Base # @param transport [Object] The instance of transport which uses this serializer # def initialize(transport=nil) @transport = transport end end # A default JSON serializer (using [MultiJSON](http://rubygems.org/gems/multi_json)) # class MultiJson include Base # De-serialize a Hash from JSON string # def load(string, options={}) ::MultiJson.load(string, options) end # Serialize a Hash to JSON string # def dump(object, options={}) ::MultiJson.dump(object, options) end end end end end end
Version data entries
96 entries across 96 versions & 8 rubygems