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

org.apfloat.samples.Operation Maven / Gradle / Ivy

package org.apfloat.samples;

import java.io.Serializable;

/**
 * Interface for implementing arbitrary operations to be executed.
 *
 * @version 1.1
 * @author Mikko Tommila
 */

public interface Operation
    extends Serializable
{
    /**
     * Executes some code, returning a value.
     *
     * @return Return value of the operation.
     */

    public T execute();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy