Create an iterator over the space using the specified template(s) and settings.

C# | Visual Basic | Visual C++ | J# |
ISpaceIterator<T> GetSpaceIterator<T>( ICollection<IQuery<T>> queries, IteratorScope iteratorScope, int bufferSize, long leaseTime )
Function GetSpaceIterator(Of T) ( _ queries As ICollection(Of IQuery(Of T)), _ iteratorScope As IteratorScope, _ bufferSize As Integer, _ leaseTime As Long _ ) As ISpaceIterator(Of T)
generic<typename T> ISpaceIterator<T>^ GetSpaceIterator( ICollection<IQuery<T>^>^ queries, IteratorScope iteratorScope, int bufferSize, long long leaseTime )

- T
- Type of object to read.

- queries (ICollection<(Of <(IQuery<(Of <(T>)>)>)>))
- The queries used for matching.
- iteratorScope (IteratorScope)
- Scope for iterator matching.
- bufferSize (Int32)
- The maximum number of objects to pool each time from the space.
- leaseTime (Int64)
- The requested initial lease time on the resulting match set

A configured space iterator.

Exception | Condition |
---|---|
InactiveSpaceException | The space is in backup mode and therefore is not active. |
SqlQueryException | The query template is an illegal SqlQuery. |