blob: fd473c9376c16e25a898e862f4445e2e01c8b28f [file] [log] [blame]
/*
* Copyright (c) 2010-2013, 2016 Eike Stepper (Berlin, Germany) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Simon McDuff - initial API and implementation
* Eike Stepper - maintenance
*/
package org.eclipse.emf.cdo.server.internal.net4j.protocol;
import org.eclipse.emf.cdo.common.protocol.CDODataInput;
import org.eclipse.emf.cdo.common.protocol.CDODataOutput;
import org.eclipse.emf.cdo.common.protocol.CDOProtocolConstants;
import org.eclipse.net4j.util.om.monitor.OMMonitor;
/**
* @author Simon McDuff
*/
public class CommitXATransactionPhase3Indication extends CommitTransactionIndication
{
public CommitXATransactionPhase3Indication(CDOServerProtocol protocol)
{
super(protocol, CDOProtocolConstants.SIGNAL_XA_COMMIT_TRANSACTION_PHASE3);
}
@Override
protected void indicating(CDODataInput in, OMMonitor monitor) throws Exception
{
initializeCommitContext(in);
}
@Override
protected void responding(CDODataOutput out, OMMonitor monitor) throws Exception
{
commitContext.commit(monitor);
boolean success = respondingException(out, CDOProtocolConstants.ROLLBACK_REASON_UNKNOWN, commitContext.getRollbackMessage(), null);
commitContext.postCommit(success);
}
@Override
protected void initializeCommitContext(CDODataInput in) throws Exception
{
int viewID = in.readInt();
commitContext = getRepository().getCommitManager().get(getTransaction(viewID));
}
}