Class GemfireItemWriter<K,V>
- java.lang.Object
- org.springframework.batch.item.KeyValueItemWriter<K,V>
- org.springframework.batch.item.data.GemfireItemWriter<K,V>
- All Implemented Interfaces:
ItemWriter<V>,org.springframework.beans.factory.InitializingBean
- Direct Known Subclasses:
SpELMappingGemfireItemWriter
public class GemfireItemWriter<K,V> extends KeyValueItemWriter<K,V>
AnItemWriterthat stores items in GemFire- Since:
- 2.2
- Author:
- David Turanski
Field Summary
Fields inherited from class org.springframework.batch.item.KeyValueItemWriter
delete, itemKeyMapper
Constructor Summary
Constructors Constructor Description GemfireItemWriter()
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidinit()afterPropertiesSet() hookvoidsetTemplate(org.springframework.data.gemfire.GemfireTemplate gemfireTemplate)protected voidwriteKeyValue(K key, V value)Subclasses implement this method to write each item to key value storeMethods inherited from class org.springframework.batch.item.KeyValueItemWriter
afterPropertiesSet, setDelete, setItemKeyMapper, write
Method Detail
setTemplate
public void setTemplate(org.springframework.data.gemfire.GemfireTemplate gemfireTemplate)
- Parameters:
gemfireTemplate- theGemfireTemplateto set
writeKeyValue
protected void writeKeyValue(K key, V value)
Description copied from class:KeyValueItemWriterSubclasses implement this method to write each item to key value store- Specified by:
writeKeyValuein classKeyValueItemWriter<K,V>- Parameters:
key- the keyvalue- the item
init
protected void init()
Description copied from class:KeyValueItemWriterafterPropertiesSet() hook- Specified by:
initin classKeyValueItemWriter<K,V>