throw new RuntimeException(e);
}
}
public void sendChangesImpl(List<Action> actions, MetaLookup ormSession) throws ConnectionException {
Keyspace keyspace = columnFamilies.getKeyspace();
MutationBatch m = keyspace.prepareMutationBatch();
//MutationBatch m = m1.setConsistencyLevel(ConsistencyLevel.CL_QUORUM);
for(Action action : actions) {
if(action instanceof Persist) {
persist((Persist)action, ormSession, m);