Back to project page InMemoryDb.
The source code is released under:
Apache License
If you think the Android project InMemoryDb 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 org.gawst.asyncdb; /*from w w w .j av a2 s . c o m*/ /** * Interface that defines sources that handle a Key/Value pair to store in a regular {@link org.gawst.asyncdb.DataSource} * * @param <K> Type of the Key handled the {@link org.gawst.asyncdb.DataSource}. * @param <V> Type of the Value handled the {@link org.gawst.asyncdb.DataSource}. * @author Created by robUx4 on 12/31/2014. */ public interface MapDataSource<K, V, INSERT_ID> extends DataSource<MapEntry<K, V>, INSERT_ID> { }