Quasardb API for PHP
Introduction Installation Compilation Configuration API Reference

Classes

  • QdbBatch
  • QdbBatchResult
  • QdbBlob
  • QdbCluster
  • QdbDeque
  • QdbEntry
  • QdbEntryCollection
  • QdbExpirableEntry
  • QdbHashSet
  • QdbInteger
  • QdbTag
  • QdbTagCollection

Exceptions

  • QdbAliasAlreadyExistsException
  • QdbAliasNotFoundException
  • QdbConnectionException
  • QdbContainerEmptyException
  • QdbException
  • QdbIncompatibleTypeException
  • QdbInputException
  • QdbOperationDisabledException
  • QdbOperationException
  • QdbProtocolException
  • QdbSystemException
 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 
<?php
/**
 * A traversable collection of {@link QdbEntry}.
 *
 * A `QdbEntryCollection` is returned by {@link \QdbTag::getEntries()}.
 *
 * Entries in the collection have a concrete type like {@link QdbBlob}, {@link QdbInteger}, {@link QdbDeque} or {@link QdbTag}
 *
 * @example
 * <code>
 * $males = $cluster->tag('male')->getEntries();
 * foreach ($males as $entry) {
 *     echo($entry->alias() . ' is a male');
 * }
 * </code>
 *
 * @see QdbTag::getEntries()
 */
class QdbEntryCollection implements Iterator
{
}
?>
Copyright 2009-2017 quasardb SAS Documentation generated by ApiGen