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

aQute.junit.runtime.Operation Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package aQute.junit.runtime;

/**
 * Represents an operation against a service of type S yielding
 * a result of type R
 *
 * @author Neil Bartlett
 * @param  The service type
 * @param  The result type
 */
public interface Operation {
	R perform(S service) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy