/*
* Copyright 2011-2017 the original author or authors.
*
* 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 com.lambdaworks.redis;
import java.util.concurrent.CompletionStage;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
/**
* A {@code RedisFuture} represents the result of an asynchronous computation, extending {@link CompletionStage}. The execution
* of the notification happens either on finish of the future execution or, if the future is completed already, immediately.
*
* @param <V> Value type.
* @author Mark Paluch
* @since 3.0
*/
public interface RedisFuture<V> extends CompletionStage<V>, Future<V> {
/**
*
* @return error text, if any error occured.
*/
String getError();
/**
* Wait up to the specified time for the command output to become available.
*
* @param timeout Maximum time to wait for a result.
* @param unit Unit of time for the timeout.
*
* @return true if the output became available.
* @throws InterruptedException if the current thread is interrupted while waiting
*/
boolean await(long timeout, TimeUnit unit) throws InterruptedException;
}