All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.avaje.ebean.config.PersistBatch Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
package com.avaje.ebean.config;

/**
 * Defines the mode for JDBC batch processing.
 * 

* Used both at a per transaction basis and per request basis. *

* * @see com.avaje.ebean.config.ServerConfig#setPersistBatch(PersistBatch) * @see com.avaje.ebean.config.ServerConfig#setPersistBatchOnCascade(PersistBatch) * * @see com.avaje.ebean.Transaction#setBatch(PersistBatch) * @see com.avaje.ebean.Transaction#setBatchOnCascade(PersistBatch) */ public enum PersistBatch { /** * Do not use JDBC Batch mode. */ NONE(false), /** * Use JDBC Batch mode on Inserts. */ INSERT(true), /** * Use JDBC Batch mode on Inserts, Updates and Deletes. */ ALL(true), /** * You should not use this value explicitly. It should only used on the Transactional annotation * to indicate that the value should inherit from the ServerConfig setting. */ INHERIT(false); final boolean forInsert; PersistBatch(boolean forInsert) { this.forInsert = forInsert; } /** * Return true if persist cascade should use JDBC batch for inserts. */ public boolean forInsert() { return forInsert; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy