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

org.opentcs.access.rmi.services.RemoteRouterService Maven / Gradle / Ivy

// SPDX-FileCopyrightText: The openTCS Authors
// SPDX-License-Identifier: MIT
package org.opentcs.access.rmi.services;

import java.rmi.Remote;
import java.rmi.RemoteException;
import java.util.Map;
import java.util.Set;
import org.opentcs.access.rmi.ClientID;
import org.opentcs.components.kernel.services.RouterService;
import org.opentcs.data.TCSObjectReference;
import org.opentcs.data.model.Path;
import org.opentcs.data.model.Point;
import org.opentcs.data.model.TCSResourceReference;
import org.opentcs.data.model.Vehicle;
import org.opentcs.data.order.Route;

/**
 * Declares the methods provided by the {@link RouterService} via RMI.
 *
 * 

* The majority of the methods declared here have signatures analogous to their counterparts in * {@link RouterService}, with an additional {@link ClientID} parameter which serves the purpose * of identifying the calling client and determining its permissions. *

*

* To avoid redundancy, the semantics of methods that only pass through their arguments are not * explicitly documented here again. See the corresponding API documentation in * {@link RouterService} for these, instead. *

*/ public interface RemoteRouterService extends Remote { // CHECKSTYLE:OFF public void updateRoutingTopology(ClientID clientId, Set> refs) throws RemoteException; public Map, Route> computeRoutes( ClientID clientId, TCSObjectReference vehicleRef, TCSObjectReference sourcePointRef, Set> destinationPointRefs, Set> resourcesToAvoid ) throws RemoteException; // CHECKSTYLE:ON }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy