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

com.litongjava.ehcache.IDataLoader Maven / Gradle / Ivy

There is a newer version: 1.4.7
Show newest version
package com.litongjava.ehcache;

/**
 * IDataLoader.
 * 

* Example: *

 * List blogList = EhCacheKit.handle("blog", "blogList", new IDataLoader(){
 *     public Object load() {
 *         return Blog.dao.find("select * from blog");
 * }});
 * 
*/ @FunctionalInterface public interface IDataLoader { public Object load(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy