You are here

interface KeyValueStoreSortedSetInterface in Key-value Extensions 8

Hierarchy

Expanded class hierarchy of KeyValueStoreSortedSetInterface

All classes that implement KeyValueStoreSortedSetInterface

File

src/KeyValueStore/KeyValueStoreSortedSetInterface.php, line 5

Namespace

Drupal\key_value\KeyValueStore
View source
interface KeyValueStoreSortedSetInterface extends KeyValueStoreSortedInterface {

  /**
   * @param float $score
   * @param mixed $member
   */
  public function add($score, $member);

  /**
   * @param array $pairs
   */
  public function addMultiple(array $pairs);

  /**
   * @param float $start
   * @param float $stop
   */
  public function deleteRange($start, $stop, $inclusive = TRUE);

  /**
   * @return float
   */
  public function getMaxScore();

  /**
   * @return float
   */
  public function getMinScore();

}

Members