public static interface DatamartContext.DataLoader
Modifier and Type | Method and Description |
---|---|
void |
addRow(List<Object> rowAsList)
Adds a row to the data buffer that will ultimately be loaded in the feed table.
|
void |
addRow(Map<String,Object> rowAsMap)
Adds a row to the data buffer that will ultimately be loaded in the feed table.
|
void |
addRow(Object... values)
Adds a row to the data buffer that will ultimately be loaded in the feed table.
|
void |
flush()
Flushes the data to the DB.
|
void addRow(Map<String,Object> rowAsMap)
rowAsMap
- Row to add in map of (field,value) pairs format.void addRow(List<Object> rowAsList)
rowAsList
- Row to add as a list of values matching the header fields order.void addRow(Object... values)
values
- Row to add as an array of values matching the header fields order.void flush()
Copyright © 2019. All rights reserved.