Class: Deimos::SchemaBackends::AvroLocal

Inherits:
AvroBase show all
Defined in:
lib/deimos/schema_backends/avro_local.rb

Overview

Encode / decode using local Avro encoding.

Instance Attribute Summary

Attributes inherited from AvroBase

#schema_store

Attributes inherited from Base

#key_schema, #namespace, #schema

Instance Method Summary collapse

Methods inherited from AvroBase

#coerce_field, content_type, #decode_key, #encode_key, field_type, #initialize, #load_schema, mock_backend, schema_base_class, schema_classname, #schema_fields, #sql_type, #validate

Methods inherited from Base

#coerce, #coerce_field, content_type, #decode, #decode_key, #encode, #encode_key, field_type, #initialize, #load_schema, mock_backend, #schema_fields, #sql_type, #validate

Constructor Details

This class inherits a constructor from Deimos::SchemaBackends::AvroBase

Instance Method Details

#decode_payload(payload, schema:) ⇒ Object



10
11
12
# File 'lib/deimos/schema_backends/avro_local.rb', line 10

def decode_payload(payload, schema:)
  avro_turf.decode(payload, schema_name: schema, namespace: @namespace)
end

#encode_payload(payload, schema: nil, topic: nil) ⇒ Object



15
16
17
# File 'lib/deimos/schema_backends/avro_local.rb', line 15

def encode_payload(payload, schema: nil, topic: nil)
  avro_turf.encode(payload, schema_name: schema, namespace: @namespace)
end