This function is typically used in an implementation of the Persister.OnLoad() function to load the space.

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

Syntax

C#
void Load(
	Tuple tuple
)
Visual Basic
Sub Load ( _
	tuple As Tuple _
)
Visual C++
void Load(
	Tuple^ tuple
)

Parameters

tuple
Type: Com.Tibco.As.Space..::..Tuple
The tuple to be loaded

Remarks

The load function is the only one that can be invoked on a space that is in the LOADING phase.
Load behaves exactly as a put except that it does not trigger Persister.OnWrite() method. Put should not be called to load entries from Database to ActiveSpaces.

See Also