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

org.javabuilders.event.IBackgroundCallback Maven / Gradle / Ivy

The newest version!
package org.javabuilders.event;

/**
 * Interface used by the background handler to inform the calling object that it has completed
 * running the background task
 * @author Jacek Furmankiewicz
 *
 */
public interface IBackgroundCallback {

	
	/**
	 * @param returnValue Returned from the background method
	 */
	void done(Object returnValue);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy