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

com.spikeify.Work Maven / Gradle / Ivy

There is a newer version: 0.2.35
Show newest version
package com.spikeify;


/**
 * A unit of work that wants to be transactionally guarded.
 * In case of transactional failure, work will be repeated, so it must be idempotent.
 * @param  class type
 */
@SuppressWarnings({"SameReturnValue", "WeakerAccess"})
public interface Work {

	R run();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy