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

org.icij.extract.mysql.SQLQueueCodec Maven / Gradle / Ivy

There is a newer version: 7.4.0
Show newest version
package org.icij.extract.mysql;

public interface SQLQueueCodec extends SQLCodec {

	/**
	 * Get the name of the column used to store the status value.
	 *
	 * @return the key name, for example {@literal status}
	 */
	String getStatusKey();

	/**
	 * Gets the status value for an object that's queued and waiting.
	 *
	 * @return the value, for example {@literal waiting}
	 */
	String getWaitingStatus();

	/**
	 * Gets the status value for an object that's been processed.
	 *
	 * @return the value, for example {@literal processed}
	 */
	String getProcessedStatus();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy