Back to project page Jello.
The source code is released under:
Apache License
If you think the Android project Jello listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.atteo.jello.space; /*from w w w . j av a 2s . c o m*/ public interface AppendOnlyCache { public static int NO_PAGE = -1; public int getBestId(short freeSpace); public short getFreeSpace(int id); public boolean isEmpty(); public void update(int id, short freeSpace); }