Package org.mule.util.xa

Examples of org.mule.util.xa.ResourceManagerException


                }
            }
        }
        catch (Exception e)
        {
            throw new ResourceManagerException(e);
        }
        finally
        {
            ctx.added = null;
            ctx.removed = null;
View Full Code Here


            }
            this.transactionJournal.logCommit(txId);
        }
        catch (Exception e)
        {
            throw new ResourceManagerException(e);
        }
    }
View Full Code Here

                {
                    queueProvider.getQueue(entry.getQueueName()).putNow(entry.getValue());
                }
                catch (InterruptedException e)
                {
                    throw new ResourceManagerException(e);
                }
            }
        }
        this.transactionJournal.logRollback(txId);
    }
View Full Code Here

                }
            }
        }
        catch (Exception e)
        {
            throw new ResourceManagerException(e);
        }
        finally
        {
            added = null;
            removed = null;
View Full Code Here

            }
            this.transactionJournal.logCommit(xid);
        }
        catch (Exception e)
        {
            throw new ResourceManagerException(e);
        }
    }
View Full Code Here

                {
                    queueProvider.getQueue(entry.getQueueName()).putNow(entry.getValue());
                }
                catch (InterruptedException e)
                {
                    throw new ResourceManagerException(e);
                }
            }
        }
        this.transactionJournal.logRollback(xid);
    }
View Full Code Here

    public void commitTransaction(AbstractTransactionContext context) throws ResourceManagerException
    {
        assureReady();
        if (context.status == Status.STATUS_MARKED_ROLLBACK)
        {
            throw new ResourceManagerException(CoreMessages.transactionMarkedForRollback());
        }
        synchronized (context)
        {
            if (logger.isDebugEnabled())
            {
View Full Code Here

                }
            }
        }
        catch (Exception e)
        {
            throw new ResourceManagerException(e);
        }
        finally
        {
            added = null;
            removed = null;
View Full Code Here

TOP

Related Classes of org.mule.util.xa.ResourceManagerException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.