RBucketsAsync interface added. #1269
parent
116d36ee8f
commit
1b54139f3a
@ -0,0 +1,54 @@
|
||||
/**
|
||||
* Copyright 2016 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.Map;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Nikita Koksharov
|
||||
*
|
||||
*/
|
||||
public interface RBucketsAsync {
|
||||
|
||||
/**
|
||||
* Returns Redis object mapped by key. Result Map is not contains
|
||||
* key-value entry for null values.
|
||||
*
|
||||
* @param <V> type of value
|
||||
* @param keys - keys
|
||||
* @return Map with name of bucket as key and bucket as value
|
||||
*/
|
||||
<V> RFuture<Map<String, V>> getAsync(String ... keys);
|
||||
|
||||
/**
|
||||
* Try to save objects mapped by Redis key.
|
||||
* If at least one of them is already exist then
|
||||
* don't set none of them.
|
||||
*
|
||||
* @param buckets - map of buckets
|
||||
* @return <code>true</code> if object has been set overwise <code>false</code>
|
||||
*/
|
||||
RFuture<Boolean> trySetAsync(Map<String, ?> buckets);
|
||||
|
||||
/**
|
||||
* Saves objects mapped by Redis key.
|
||||
*
|
||||
* @param buckets - map of buckets
|
||||
*/
|
||||
RFuture<Void> setAsync(Map<String, ?> buckets);
|
||||
|
||||
}
|
Loading…
Reference in New Issue