Ditto 4.7.2
Loading...
Searching...
No Matches
WriteStrategy.hpp
1#ifndef _DITTO_WRITE_STRATEGY_
2#define _DITTO_WRITE_STRATEGY_
3
4namespace ditto {
5
10enum class WriteStrategy {
15 merge = 1,
16
22 insertIfAbsent,
23
32 insertDefaultIfAbsent,
33
47 updateDifferentValues,
48};
49} // namespace ditto
50#endif