Package org.cache2k.core.experimentalApi
Interface AsyncCacheWriter<K,V>
-
public interface AsyncCacheWriter<K,V>- Author:
- Jens Wilke
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceAsyncCacheWriter.Callback
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidremove(K key, AsyncCacheWriter.Callback callback, Executor ex)voidwrite(K key, V value, AsyncCacheWriter.Callback callback, Executor ex)
-
-
-
Method Detail
-
write
void write(K key, V value, AsyncCacheWriter.Callback callback, Executor ex)
-
remove
void remove(K key, AsyncCacheWriter.Callback callback, Executor ex)
-
-