Skip to content

Instantly share code, notes, and snippets.

@sebersole
Last active May 24, 2016 13:24
Show Gist options
  • Save sebersole/d53e8df56660656671faf578dd454a94 to your computer and use it in GitHub Desktop.
Save sebersole/d53e8df56660656671faf578dd454a94 to your computer and use it in GitHub Desktop.
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