Pinq\Providers\Configuration\IQueryConfiguration::getIteratorScheme PHP Method

getIteratorScheme() public method

public getIteratorScheme ( ) : Pinq\Iterators\IIteratorScheme
return Pinq\Iterators\IIteratorScheme
    public function getIteratorScheme();

Usage Example

Example #1
0
 public function __construct(Queries\ISourceInfo $sourceInfo, Configuration\IQueryConfiguration $configuration)
 {
     $this->sourceInfo = $sourceInfo;
     $this->configuration = $configuration;
     $this->queryCache = $configuration->getQueryCache();
     $this->scheme = $configuration->getIteratorScheme();
 }