com.hazelcast.core
public interface MapLoader<K,V>
V load(K key)
key
- Map<K,V> loadAll(Collection<K> keys)
keys
- keys of the values entries to loadIterable<K> loadAllKeys()
Iterable
may return the keys lazily
by loading them in batches. The Iterator
of this Iterable
may implement the
Closeable
interface in which case it will be closed once iteration is over.
This is intended for releasing resources such as closing a JDBC result set.Copyright © 2015 Hazelcast, Inc.. All Rights Reserved.