package eu.dnetlib.common.ifaces;

public interface BlackboardExecutionCallback<T> {

	void success(T t);

	void fail(T t);

	void ongoing(T t);
}
