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

com.avaje.ebeaninternal.server.loadcontext.DLoadList Maven / Gradle / Ivy

The newest version!
package com.avaje.ebeaninternal.server.loadcontext;

import java.util.List;

public interface DLoadList {

	public int add(T e);

	/**
	 * Return the next batch of entries from the top.
	 */
	public abstract List getNextBatch(int batchSize);

	public void removeEntry(int position);

	/**
	 * Return the batch of entries based on the position and batch size.
	 */
	public List getLoadBatch(int position, int batchSize);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy