io.hekate.messaging.operation.AggregateResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hekate-core Show documentation
Show all versions of hekate-core Show documentation
Java library for cluster communications and computing.
/*
* Copyright 2020 The Hekate Project
*
* The Hekate Project licenses this file to you 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 io.hekate.messaging.operation;
import io.hekate.cluster.ClusterNode;
import io.hekate.messaging.MessagingChannel;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.stream.Stream;
import static java.util.Collections.emptyList;
/**
* Result of an {@link Aggregate} operation.
*
* @param Base type of aggregation results.
*
* @see MessagingChannel#newAggregate(Object)
*/
public interface AggregateResult extends Iterable {
/**
* Returns the original request object that was submitted to the cluster.
*
* @return Original request.
*/
T request();
/**
* Returns the aggregation participants. Returns an empty list if there were no suitable nodes in the cluster to perform the operation.
*
* @return Cluster nodes that participated in the aggregation or an empty list if there were no suitable nodes in the cluster to perform
* the operation.
*/
List nodes();
/**
* Returns the map of cluster nodes and errors that happened while trying to communicate with those nodes. Returns an empty map if
* there were no failures.
*
* @return Map of nodes and their corresponding failures. Returns an empty map if there were no failures.
*
* @see #errorOf(ClusterNode)
*/
Map errors();
/**
* Returns a map of cluster nodes and results that were successfully received from these nodes. Returns an empty map if there were no
* successful results.
*
* @return Map of results.
*
* @see #resultOf(ClusterNode)
*/
Map resultsByNode();
@Override
default Iterator iterator() {
return results().iterator();
}
/**
* Returns the result for the specified cluster node or {@code null} if there was no result from this node.
*
* @param node Cluster node (must be one of the {@link #nodes()}).
*
* @return Result.
*
* @see #results()
*/
default T resultOf(ClusterNode node) {
Map results = resultsByNode();
return results != null ? results.get(node) : null;
}
/**
* Returns the aggregation results as {@link Stream}.
*
* @return Stream of aggregation results.
*/
default Stream stream() {
return results().stream();
}
/**
* Returns the aggregation results.
*
* @return Aggregation results.
*/
default Collection results() {
Map results = resultsByNode();
return results != null ? results.values() : emptyList();
}
/**
* Returns {@code true} if there was no failure during the aggregation request processing on the specified cluster node.
*
* @param node Cluster node (must be one of the {@link #nodes()}).
*
* @return {@code true} if there was no communication failure with the specified cluster node.
*/
default boolean isSuccess(ClusterNode node) {
return errorOf(node) == null;
}
/**
* Returns {@code true} if aggregation completed successfully without any {@link #errors() errors}.
*
* @return {@code true} if aggregation completed successfully without any errors.
*
* @see #errors()
*/
default boolean isSuccess() {
Map errors = errors();
return errors == null || errors.isEmpty();
}
/**
* Returns an error for the specified node or {@code null} if there was no failure on that node.
*
* @param node Cluster node (must be one of the {@link #nodes()}).
*
* @return Error in case of a communication error with the specified node or {@code null}.
*
* @see #errors()
*/
default Throwable errorOf(ClusterNode node) {
Map errors = errors();
return errors != null ? errors.get(node) : null;
}
}