Stores a tuple into the space and returns the corresponding entry, and 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 Put(
	Tuple tuple,
	PutOptions putOpts
)
Visual Basic
Function Put ( 
	tuple As Tuple,
	putOpts As PutOptions
) As Tuple
Visual C++
Tuple^ Put(
	Tuple^ tuple, 
	PutOptions^ putOpts
)
F#
abstract Put : 
        tuple : Tuple * 
        putOpts : PutOptions -> Tuple 

Parameters

tuple
Type: Com.Tibco.As.Space..::..Tuple
The tuple to be stored.
putOpts
Type: Com.Tibco.As.Space..::..PutOptions
Put options to specify custom lock wait, lock/unlock/forget options.

Return Value

Type: Tuple
The old tuple if it exists

See Also