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

org.onetwo.dbm.event.spi.DbmBatchInsertEvent Maven / Gradle / Ivy

The newest version!
package org.onetwo.dbm.event.spi;

import org.onetwo.dbm.event.internal.DbmSessionEventSource;

public class DbmBatchInsertEvent extends DbmInsertEvent {
	private Integer batchSize;

	public DbmBatchInsertEvent(Object object, DbmSessionEventSource eventSource) {
		super(object, eventSource);
		setAction(DbmEventAction.batchInsert);
	}

	public Integer getBatchSize() {
		return batchSize;
	}

	public void setBatchSize(Integer batchSize) {
		this.batchSize = batchSize;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy