You are here

SolrRequestDispatcherInterface.php in Search API Solr 4.x

Same filename and directory in other branches
  1. 8.3 src/SolrRequestDispatcherInterface.php

File

src/SolrRequestDispatcherInterface.php
View source
<?php

namespace Drupal\search_api_solr;


/**
 * Provides an interface defining a SolrRequestDispatcher entity.
 */
interface SolrRequestDispatcherInterface extends SolrConfigInterface {

  /**
   * Gets the environments targeted by this Solr RequestDispatcher.
   *
   * @return string[]
   *   Environments.
   */
  public function getEnvironments();

  /**
   * Gets the Solr RequestDispatcher definition as nested associative array.
   *
   * @return array
   *   The Solr RequestDispatcher definition as nested associative array.
   */
  public function getRequestDispatcher();

}

Interfaces

Namesort descending Description
SolrRequestDispatcherInterface Provides an interface defining a SolrRequestDispatcher entity.