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

org.opentcs.kernel.vehicles.VehicleControllerComponentsFactory Maven / Gradle / Ivy

/**
 * Copyright (c) The openTCS Authors.
 *
 * This program is free software and subject to the MIT license. (For details,
 * see the licensing information (LICENSE.txt) you should have received with
 * this copy of the software.)
 */
package org.opentcs.kernel.vehicles;

import org.opentcs.data.TCSObjectReference;
import org.opentcs.data.model.Vehicle;

/**
 * A factory for various components related to a vehicle controller.
 */
public interface VehicleControllerComponentsFactory {

  /**
   * Creates a new {@link PeripheralInteractor} instance for the given vehicle.
   *
   * @param vehicleRef The vehicle.
   * @return A new peripheral interactor.
   */
  PeripheralInteractor createPeripheralInteractor(TCSObjectReference vehicleRef);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy