Last active
May 24, 2016 13:24
-
-
Save sebersole/d53e8df56660656671faf578dd454a94 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final Integer sessionLocalJdbcBatchSize = jdbcCoordinator.getJdbcSessionOwner().getBatchSize(); | |
final int jdbcBatchSizeToUse = sessionLocalJdbcBatchSize == null ? this.size : sessionLocalJdbcBatchSize; | |
return jdbcBatchSizeToUse > 1 | |
? new BatchingBatch( key, jdbcCoordinator, jdbcBatchSizeToUse ) | |
: new NonBatchingBatch( key, jdbcCoordinator ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment