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);
}