Updates a Tuple in the Space. Only the fields in the tuple argument are modified. Allows you to specify a lock wait value, lock or unlock value and a forget value.

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

Syntax

C#
Tuple Update(
	Tuple keyTuple,
	Tuple tuple,
	PutOptions putOpts
)
Visual Basic
Function Update ( 
	keyTuple As Tuple,
	tuple As Tuple,
	putOpts As PutOptions
) As Tuple
Visual C++
Tuple^ Update(
	Tuple^ keyTuple, 
	Tuple^ tuple, 
	PutOptions^ putOpts
)
F#
abstract Update : 
        keyTuple : Tuple * 
        tuple : Tuple * 
        putOpts : PutOptions -> Tuple 

Parameters

keyTuple
Type: Com.Tibco.As.Space..::..Tuple
Identifies the tuple to be modified.
tuple
Type: Com.Tibco.As.Space..::..Tuple
Contains the name of the fields to be updated along with the new values.
putOpts
Type: Com.Tibco.As.Space..::..PutOptions
Put options to specify custom lock wait, lock/unlock/forget options.

Return Value

Type: Tuple
A Tuple containing the values of the previously existing entry with the same key.

See Also