Returns and atomically removes from the space the tuple (if one exists) whose Tuple key fields match the key fields of the Tuple provided. This method allows you to specify lock wait, lock/unlock/forget options

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

Parameters

tuple
Type: Com.Tibco.As.Space..::..Tuple
The key tuple.
takeOpts
Type: Com.Tibco.As.Space..::..TakeOptions
Take options to specify custom lock wait, lock/unlock/forget options.

Return Value

Type: Tuple
The current tuple

See Also