Sha256: 2682e08b342a6da346bc14ad3dea839a9b49cbaa1ba4ec254ff1c288531092c3
Contents?: true
Size: 380 Bytes
Versions: 14
Compression:
Stored size: 380 Bytes
Contents
module EventSourcery module EventStore module EventTypeSerializers # To support legacy implementations. Type is provided when initializing # the event, not derived from the class constant class Legacy def serialize(event_class) nil end def deserialize(event_type) Event end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems