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

org.opentcs.components.kernel.Query Maven / Gradle / Ivy

// SPDX-FileCopyrightText: The openTCS Authors
// SPDX-License-Identifier: MIT
package org.opentcs.components.kernel;

import java.io.Serializable;

/**
 * Marks a query (parameter) object.
 *
 * @param  The result type.
 */
public interface Query {

  /**
   * A convenience class to be used as the result type for queries that do not return any result.
   */
  class Void
      implements
        Serializable {

    /**
     * Creates a new instance.
     */
    public Void() {
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy