protected abstract boolean checkSize(ClientMessage message);
protected ClientSession createAutoCommitSession(final ClientSessionFactory sf) throws Exception
{
ClientSession session = sf.createSession(false, true, true);
session.addMetaData("someData", RandomUtil.randomString());
session.addMetaData("someData2", RandomUtil.randomString());
return session;
}
protected ClientSession createTransactionalSession(final ClientSessionFactory sf) throws Exception