Class: RubyEventStore::Mappers::NullMapper

Inherits:
PipelineMapper show all
Defined in:
lib/ruby_event_store/mappers/null_mapper.rb

Instance Method Summary collapse

Methods inherited from PipelineMapper

#event_to_record, #record_to_event

Constructor Details

#initializeNullMapper

Returns a new instance of NullMapper.



6
7
8
9
10
11
12
# File 'lib/ruby_event_store/mappers/null_mapper.rb', line 6

def initialize
  warn <<~EOW
    DEPRECATION WARNING: `RubyEventStore::Mappers::NullMapper` is deprecated and will be removed in the next major release.
    Use `RubyEventStore::Mappers::Default.new` instead.
  EOW
  super(Pipeline.new)
end