Ditto  3.0.4
WriteStrategy.hpp
1 #ifndef _DITTO_WRITE_STRATEGY_
2 #define _DITTO_WRITE_STRATEGY_
3 
4 namespace ditto {
5 
10 enum class WriteStrategy {
15  merge = 1,
16 
22  insertIfAbsent,
23 
32  insertDefaultIfAbsent,
33 };
34 } // namespace ditto
35 #endif