Skip to content

Instantly share code, notes, and snippets.

@nekman
Created September 5, 2012 07:37
Show Gist options
  • Select an option

  • Save nekman/3632702 to your computer and use it in GitHub Desktop.

Select an option

Save nekman/3632702 to your computer and use it in GitHub Desktop.
package se.labs.cache;
/**
* @author ne
*
*/
public interface ItemCacheLoader<T> {
/**
*
* @return Performs a reload and returns the result.
*/
T reload();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment