Package org.wildfly.clustering.ee.infinispan

Examples of org.wildfly.clustering.ee.infinispan.TransactionBatch.discard()


            success = true;
        } finally {
            if (success) {
                batch.close();
            } else {
                batch.discard();
            }
        }
        return null;
    }
}
View Full Code Here


        verify(this.tm).begin();

        assertSame(tx, batch.getTransaction());

        batch.discard();

        verify(this.tm).rollback();
    }

    @Test
View Full Code Here

        batch.close();

        verify(this.tm, never()).commit();

        batch.discard();

        verify(this.tm, never()).rollback();
    }

    @Test
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.