public final Object perform(InvocationContext ignored) throws Throwable {
if (ignored != null)
throw new IllegalStateException("Expected null context!");
// 1. first create a remote transaction
RemoteTransaction remoteTransaction = txTable.getRemoteTransaction(globalTx);
boolean remoteTxinitiated = remoteTransaction != null;
if (!remoteTxinitiated) {
remoteTransaction = txTable.createRemoteTransaction(globalTx, modifications);
} else {
/*
* remote tx was already created by Cache#lock() API call
* set the proper modifications since lock has none
*
* @see LockControlCommand.java
* https://jira.jboss.org/jira/browse/ISPN-48
*/
remoteTransaction.setModifications(getModifications());
}
// 2. then set it on the invocation context
RemoteTxInvocationContext ctx = icc.createRemoteTxInvocationContext();
ctx.setRemoteTransaction(remoteTransaction);