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

org.bonitasoft.engine.service.BroadcastService Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (C) 2019 Bonitasoft S.A.
 * Bonitasoft, 32 rue Gustave Eiffel - 38000 Grenoble
 * 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
 * version 2.1 of the License.
 * 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.
 * You should have received a copy of the GNU Lesser General Public License along with this
 * program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
 * Floor, Boston, MA 02110-1301, USA.
 **/
package org.bonitasoft.engine.service;

import java.util.Map;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import java.util.concurrent.TimeoutException;

/**
 * Service allowing to broadcast a call made on services to the other nodes of a Cluster
 *
 * @author Baptiste Mesta
 */
public interface BroadcastService {

    /**
     * Broadcast the execution of a callable on other nodes and returns immediately
     * a future holding the execution result on each node (once available).
     * 
* The callable will be executed using a platform level session on other nodes. * * @param callable * callable that will be executed on all nodes except the current one * @param * type of the returned value * @return * a future of a map containing the name of the node and the result of the callable */ Future>> executeOnOthers(Callable callable); /** * Broadcast the execution of a callable on other nodes and returns immediately * a future holding the execution result on each node (once available). *
* The callable will be executed using a tenant level session on other nodes. * * @param callable * callable that will be executed on all nodes except the current one * @param * type of the returned value * @param tenantId * the if of the tenant * @return * a future of a map containing the name of the node and the result of the callable */ Future>> executeOnOthers(Callable callable, Long tenantId); Map> executeOnOthersAndWait(Callable callable, Long tenantId) throws TimeoutException, InterruptedException, ExecutionException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy