All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.portal.kernel.cluster.FutureClusterResponses Maven / Gradle / Ivy

Go to download

Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.

There is a newer version: 7.0.0-nightly
Show newest version
/**
 * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 * details.
 */

package com.liferay.portal.kernel.cluster;

import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.CancellationException;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;

/**
 * @author Tina Tian
 */
public class FutureClusterResponses implements Future {

	public FutureClusterResponses(List
addresses) { _clusterNodeResponses = new ClusterNodeResponses(); _countDownLatch = new CountDownLatch(addresses.size()); _expectedReplyAddress = new HashSet
(addresses); } public void addClusterNodeResponse( ClusterNodeResponse clusterNodeResponse) { _clusterNodeResponses.addClusterResponse(clusterNodeResponse); _countDownLatch.countDown(); } public void addExpectedReplyAddress(Address address) { _expectedReplyAddress.add(address); } @Override public boolean cancel(boolean mayInterruptIfRunning) { if (_cancelled || isDone()) { return false; } _cancelled = true; return true; } public boolean expectsReply(Address address) { return _expectedReplyAddress.contains(address); } @Override public ClusterNodeResponses get() throws InterruptedException { if (_cancelled) { throw new CancellationException(); } _countDownLatch.await(); return _clusterNodeResponses; } @Override public ClusterNodeResponses get(long timeout, TimeUnit timeUnit) throws InterruptedException, TimeoutException { if (_cancelled) { throw new CancellationException(); } if (_countDownLatch.await(timeout, timeUnit)) { return _clusterNodeResponses; } else { throw new TimeoutException(); } } public BlockingQueue getPartialResults() { return _clusterNodeResponses.getClusterResponses(); } @Override public boolean isCancelled() { return _cancelled; } @Override public boolean isDone() { if ((_countDownLatch.getCount() == 0) || _cancelled) { return true; } else { return false; } } private boolean _cancelled; private ClusterNodeResponses _clusterNodeResponses; private CountDownLatch _countDownLatch; private Set
_expectedReplyAddress; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy