Feature - Add ability to define MapLoaderAsync in MapOptions object #4496
parent
91f63b16d1
commit
b15f76b1b8
@ -0,0 +1,47 @@
|
|||||||
|
/**
|
||||||
|
* Copyright (c) 2013-2021 Nikita Koksharov
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
package org.redisson.api;
|
||||||
|
|
||||||
|
import java.util.concurrent.CompletionStage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Asynchronous iterator
|
||||||
|
*
|
||||||
|
* @author Nikita Koksharov
|
||||||
|
*
|
||||||
|
* @param <V> value type
|
||||||
|
*/
|
||||||
|
public interface AsyncIterator<V> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns <code>true</code> if more elements are available.
|
||||||
|
* <p>
|
||||||
|
* NOTE: each invocation returns a new instance of CompletionStage
|
||||||
|
*
|
||||||
|
* @return <code>true</code> if more elements are available, otherwise <code>false</code>
|
||||||
|
*/
|
||||||
|
CompletionStage<Boolean> hasNext();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns next element or NoSuchElementException if no more elements available.
|
||||||
|
* <p>
|
||||||
|
* NOTE: each invocation returns a new instance of CompletionStage
|
||||||
|
*
|
||||||
|
* @return next element or NoSuchElementException
|
||||||
|
*/
|
||||||
|
CompletionStage<V> next();
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,48 @@
|
|||||||
|
/**
|
||||||
|
* Copyright (c) 2013-2021 Nikita Koksharov
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
package org.redisson.api.map;
|
||||||
|
|
||||||
|
import org.redisson.api.AsyncIterator;
|
||||||
|
import org.redisson.api.RMap;
|
||||||
|
|
||||||
|
import java.util.concurrent.CompletionStage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Map loader used for read-through operations or during {@link RMap#loadAll} execution.
|
||||||
|
*
|
||||||
|
* @author Nikita Koksharov
|
||||||
|
*
|
||||||
|
* @param <K> key type
|
||||||
|
* @param <V> value type
|
||||||
|
*/
|
||||||
|
public interface MapLoaderAsync<K, V> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Loads map value by key.
|
||||||
|
*
|
||||||
|
* @param key - map key
|
||||||
|
* @return value or <code>null</code> if value doesn't exists
|
||||||
|
*/
|
||||||
|
CompletionStage<V> load(K key);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Loads all keys.
|
||||||
|
*
|
||||||
|
* @return Iterable object. It's helpful if all keys don't fit in memory.
|
||||||
|
*/
|
||||||
|
AsyncIterator<K> loadAllKeys();
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue