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

org.skife.jdbi.v2.sqlobject.CheckpointHandler Maven / Gradle / Ivy

package org.skife.jdbi.v2.sqlobject;

import net.sf.cglib.proxy.MethodProxy;

class CheckpointHandler implements Handler
{
    public Object invoke(HandleDing h, Object target, Object[] args, MethodProxy mp)
    {
        h.getHandle().checkpoint(String.valueOf(args[0]));
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy