class Synapse::Serialization::RevisionResolver

Represents a mechanism for determining the revision of a payload being serialized @abstract

Public Instance Methods

revision_of(payload_type) click to toggle source

Determines the revision of the given payload type

@abstract @param [Class] payload_type @return [String] The revision of the given payload type

# File lib/synapse/serialization/revision_resolver.rb, line 11
def revision_of(payload_type)
  raise NotImplementedError
end