Batch CompareAndTake operation with TakeOptions

Namespace: Com.Tibco.As.Space
Assembly: TIBCO.ActiveSpaces.Common (in TIBCO.ActiveSpaces.Common.dll) Version: 2.0.0.0 (2.2.0.015)

Syntax

C#
SpaceResultList CompareAndTakeAll(
	ICollection<Tuple> oldTuples,
	TakeOptions takeOpts
)
Visual Basic
Function CompareAndTakeAll ( 
	oldTuples As ICollection(Of Tuple),
	takeOpts As TakeOptions
) As SpaceResultList
Visual C++
SpaceResultList^ CompareAndTakeAll(
	ICollection<Tuple^>^ oldTuples, 
	TakeOptions^ takeOpts
)
F#
abstract CompareAndTakeAll : 
        oldTuples : ICollection<Tuple> * 
        takeOpts : TakeOptions -> SpaceResultList 

Parameters

oldTuples
Type: System.Collections.Generic..::..ICollection<(Of <(<'Tuple>)>)>
old tuples to be used to compare against existing values
takeOpts
Type: Com.Tibco.As.Space..::..TakeOptions
TakeOptions with custom lock wait/lock/unlock

Return Value

Type: SpaceResultList
SpaceResultList that contains SpaceResult. When there is mismatch for that index position in the SpaceResultList GetTuple(Int32) will return a new tuple, otherwise it is same object as given in old tuples

See Also