Batch CompareAndPut operation with PutOptions

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

Collapse imageSyntax

C#
SpaceResultList CompareAndPutAll(
	ICollection<Tuple> oldTuples,
	ICollection<Tuple> newTuples,
	PutOptions putOpts
)
Visual Basic
Function CompareAndPutAll ( _
	oldTuples As ICollection(Of Tuple), _
	newTuples As ICollection(Of Tuple), _
	putOpts As PutOptions _
) As SpaceResultList
Visual C++
SpaceResultList^ CompareAndPutAll(
	ICollection<Tuple^>^ oldTuples, 
	ICollection<Tuple^>^ newTuples, 
	PutOptions^ putOpts
)

Parameters

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

Return Value

SpaceResultList that contains SpaceResult

Collapse imageSee Also