
com.spikeify.Work Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Simple ORM for Aerospike
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