package eu.dnetlib.dlms.jdbc;

/**
 * This class is a subclass of DataResult and it is intended to notify the ResultSet consumer that the producer of the
 * result has ended its execution and that there are no other results to read nor wait for.
 * 
 * @author lexis
 */
public class SentinelDataResult extends DataResult {

	/** Constructor. */
	public SentinelDataResult() {
		super(null);
	}

	/**
	 * {@inheritDoc}
	 * 
	 * @see eu.dnetlib.dlms.jdbc.DataResult#isSentinel()
	 */
	@Override
	public boolean isSentinel() {
		return true;
	}

}
