Class: Deimos::SchemaBackends::AvroSchemaRegistry

Inherits:
AvroBase
  • Object
show all
Defined in:
lib/deimos/schema_backends/avro_schema_registry.rb

Overview

Encode / decode using the Avro schema registry.

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



12
13
14
# File 'lib/deimos/schema_backends/avro_schema_registry.rb', line 12

def decode_payload(payload, schema:)
  avro_turf_messaging.decode(payload.to_s, schema_name: schema)
end

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



17
18
19
# File 'lib/deimos/schema_backends/avro_schema_registry.rb', line 17

def encode_payload(payload, schema: nil, topic: nil)
  avro_turf_messaging.encode(payload, schema_name: schema, subject: topic || schema)
end