package eu.dnetlib.common.ifaces;

public interface Stoppable {

	void stop();

	void resume();

	StoppableDetails getStopDetails();
}
