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

com.lithium.dbi.rdbi.Callback Maven / Gradle / Ivy

package com.lithium.dbi.rdbi;

/**
 * Given a RDBI handle, perform some transformation and return a result of type T.
 * @param  the generic type returned by this callback.
 */
public interface Callback {
    T run(Handle handle);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy