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

io.zulia.server.index.federator.AllNodeRequestFederator Maven / Gradle / Ivy

There is a newer version: 1.6.4
Show newest version
package io.zulia.server.index.federator;

import io.zulia.message.ZuliaBase.Node;

import java.util.Collection;
import java.util.concurrent.ExecutorService;

public abstract class AllNodeRequestFederator extends NodeRequestFederator {

	public AllNodeRequestFederator(Node thisNode, Collection otherNodesActive, ExecutorService pool) {
		super(thisNode, otherNodesActive, pool);

		nodes.add(thisNode);
		nodes.addAll(otherNodesActive);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy