You are here

interface AllDocsInterface in Replication 8.2

Same name and namespace in other branches
  1. 8 src/AllDocs/AllDocsInterface.php \Drupal\replication\AllDocs\AllDocsInterface

Hierarchy

Expanded class hierarchy of AllDocsInterface

All classes that implement AllDocsInterface

1 file declares its use of AllDocsInterface
AllDocsFactoryTest.php in tests/src/Unit/AllDocsFactoryTest.php

File

src/AllDocs/AllDocsInterface.php, line 8

Namespace

Drupal\replication\AllDocs
View source
interface AllDocsInterface {

  /**
   * @param boolean $include_docs
   * @return \Drupal\replication\AllDocs\AllDocsInterface
   */
  public function includeDocs($include_docs);

  /**
   * @param int $limit
   * @return \Drupal\replication\AllDocs\AllDocsInterface
   */
  public function limit($limit);

  /**
   * @param int $skip
   * @return \Drupal\replication\AllDocs\AllDocsInterface
   */
  public function skip($skip);

  /**
   * @param boolean $descending
   * @return \Drupal\replication\AllDocs\AllDocsInterface
   */
  public function descending($descending);

  /**
   * @param string $key
   * @return \Drupal\replication\AllDocs\AllDocsInterface
   */
  public function startKey($key);

  /**
   * @param string $key
   * @return \Drupal\replication\AllDocs\AllDocsInterface
   */
  public function endKey($key);

  /**
   * @param boolean $inclusive_end
   * @return \Drupal\replication\AllDocs\AllDocsInterface
   */
  public function inclusiveEnd($inclusive_end);

  /**
   * @return array
   */
  public function execute();

}

Members