Java Code Examples for org.springframework.transaction.support.TransactionSynchronizationUtils#triggerFlush()
The following examples show how to use
org.springframework.transaction.support.TransactionSynchronizationUtils#triggerFlush() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ReactiveNeo4jTransactionManager.java From sdn-rx with Apache License 2.0 | 4 votes |
@Override public void flush() { TransactionSynchronizationUtils.triggerFlush(); }
Example 2
Source File: Neo4jTransactionManager.java From sdn-rx with Apache License 2.0 | 4 votes |
@Override public void flush() { TransactionSynchronizationUtils.triggerFlush(); }
Example 3
Source File: WebSphereUowTransactionManager.java From spring-analysis-note with MIT License | 4 votes |
@Override public void flush() { TransactionSynchronizationUtils.triggerFlush(); }
Example 4
Source File: DataSourceTransactionManager.java From spring-analysis-note with MIT License | 4 votes |
@Override public void flush() { if (TransactionSynchronizationManager.isSynchronizationActive()) { TransactionSynchronizationUtils.triggerFlush(); } }
Example 5
Source File: WebSphereUowTransactionManager.java From java-technology-stack with MIT License | 4 votes |
@Override public void flush() { TransactionSynchronizationUtils.triggerFlush(); }
Example 6
Source File: DataSourceTransactionManager.java From java-technology-stack with MIT License | 4 votes |
@Override public void flush() { if (TransactionSynchronizationManager.isSynchronizationActive()) { TransactionSynchronizationUtils.triggerFlush(); } }
Example 7
Source File: WebSphereUowTransactionManager.java From lams with GNU General Public License v2.0 | 4 votes |
@Override public void flush() { TransactionSynchronizationUtils.triggerFlush(); }
Example 8
Source File: DataSourceTransactionManager.java From lams with GNU General Public License v2.0 | 4 votes |
@Override public void flush() { if (TransactionSynchronizationManager.isSynchronizationActive()) { TransactionSynchronizationUtils.triggerFlush(); } }
Example 9
Source File: WebSphereUowTransactionManager.java From spring4-understanding with Apache License 2.0 | 4 votes |
@Override public void flush() { TransactionSynchronizationUtils.triggerFlush(); }
Example 10
Source File: JtaTransactionObject.java From spring-analysis-note with MIT License | 2 votes |
/** * This implementation triggers flush callbacks, * assuming that they will flush all affected ORM sessions. * @see org.springframework.transaction.support.TransactionSynchronization#flush() */ @Override public void flush() { TransactionSynchronizationUtils.triggerFlush(); }
Example 11
Source File: JtaTransactionObject.java From java-technology-stack with MIT License | 2 votes |
/** * This implementation triggers flush callbacks, * assuming that they will flush all affected ORM sessions. * @see org.springframework.transaction.support.TransactionSynchronization#flush() */ @Override public void flush() { TransactionSynchronizationUtils.triggerFlush(); }
Example 12
Source File: JtaTransactionObject.java From lams with GNU General Public License v2.0 | 2 votes |
/** * This implementation triggers flush callbacks, * assuming that they will flush all affected ORM sessions. * @see org.springframework.transaction.support.TransactionSynchronization#flush() */ @Override public void flush() { TransactionSynchronizationUtils.triggerFlush(); }
Example 13
Source File: JtaTransactionObject.java From spring4-understanding with Apache License 2.0 | 2 votes |
/** * This implementation triggers flush callbacks, * assuming that they will flush all affected ORM sessions. * @see org.springframework.transaction.support.TransactionSynchronization#flush() */ @Override public void flush() { TransactionSynchronizationUtils.triggerFlush(); }