Updates a Tuple in the Space. Only the fields in the tuple argument are modified.

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
)
Visual Basic
Function Update ( 
	keyTuple As Tuple,
	tuple As Tuple
) As Tuple
Visual C++
Tuple^ Update(
	Tuple^ keyTuple, 
	Tuple^ tuple
)
F#
abstract Update : 
        keyTuple : Tuple * 
        tuple : Tuple -> 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.

Return Value

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

See Also