Example usage for org.springframework.batch.support.transaction TransactionAwareProxyFactory createAppendOnlyTransactionalSet

List of usage examples for org.springframework.batch.support.transaction TransactionAwareProxyFactory createAppendOnlyTransactionalSet

Introduction

In this page you can find the example usage for org.springframework.batch.support.transaction TransactionAwareProxyFactory createAppendOnlyTransactionalSet.

Prototype

public static <T> Set<T> createAppendOnlyTransactionalSet() 

Source Link

Usage

From source file:org.springframework.batch.support.transaction.ConcurrentTransactionAwareProxyTests.java

@Test
public void testConcurrentTransactionalAppendOnlySet() throws Exception {
    Set<String> set = TransactionAwareProxyFactory.createAppendOnlyTransactionalSet();
    testSet(set);//from  w  w w. j  a v  a  2  s  .  c o m
}