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

de.team33.patterns.testing.titan.Operation Maven / Gradle / Ivy

The newest version!
package de.team33.patterns.testing.titan;

@Deprecated
@FunctionalInterface
@SuppressWarnings("ProhibitedExceptionDeclared")
public interface Operation {

    /**
     * Performs this operation.
     *
     * @param context The {@link Context} of this execution.
     * @return The result as specified by this operation.
     * @throws Exception If caused during the operation.
     */
    R operate(Context context) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy