final Operation op = clusterTransaction.getSelectOperation(storeTable);
// set the keys into the operation
domainTypeHandler.operationSetKeys(instanceHandler, op);
// set the expected columns into the operation
domainTypeHandler.operationGetValues(op);
final ResultData rs = op.resultData(false);
final SessionImpl cacheManager = this;
// defer execution of the key operation until the next find, flush, or query
Runnable postExecuteOperation = new Runnable() {
public void run() {
if (rs.next()) {