Class: Storing::Inserter

Inherits:
AbstractInserter show all
Defined in:
lib/storing/inserter.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(entity, mapper, store) ⇒ Inserter

Returns a new instance of Inserter.



8
9
10
11
12
# File 'lib/storing/inserter.rb', line 8

def initialize entity, mapper, store
	@entity = entity
	@mapper = mapper
	@store = store
end

Instance Attribute Details

#entityObject (readonly)

Returns the value of attribute entity.



6
7
8
# File 'lib/storing/inserter.rb', line 6

def entity
  @entity
end

#mapperObject (readonly)

Returns the value of attribute mapper.



6
7
8
# File 'lib/storing/inserter.rb', line 6

def mapper
  @mapper
end

#storeObject (readonly)

Returns the value of attribute store.



6
7
8
# File 'lib/storing/inserter.rb', line 6

def store
  @store
end

Instance Method Details

#insertObject



14
15
16
# File 'lib/storing/inserter.rb', line 14

def insert
	store.insert(data)
end