Take an array of matching objects from the space.
Matching is done as in Take with no timeout.
Declaration Syntax
C# | Visual Basic | Visual C++ | J# |
T[] TakeMultiple<T>(
IQuery<T> query,
int maxItems
)
Function TakeMultiple(Of T) ( _
query As IQuery(Of T), _
maxItems As Integer _
) As T()
generic<typename T>
array<T>^ TakeMultiple(
IQuery<T>^ query,
int maxItems
)
J# supports the use of generic APIs, but not the declaration of new ones.
Generic Template Parameters
Parameters
- query (IQuery<(Of <(T>)>))
- The query used for matching.
- maxItems (Int32)
- Maximum number of objects to return.
Return Value
An array of objects taken from the space (empty array if no match was found).
Exceptions
Assembly:
GigaSpaces.Core (Module: GigaSpaces.Core) Version: 10.1.0.0 (10.1.1.12800)