// get the processing logic for the dedicated logEntry
// type
InMemoryProcessing processingLogic = txnMan.getProcessingLogic().get(type);
// deserialize the arguments retrieved from the logEntry
OperationInternal operation = processingLogic.convertToOperation(processingLogic
.deserializeRequest(le.getPayload()));
// execute the in-memory logic
try {
processingLogic.process(operation);