This function is typically used in an implementation of the
Persister.OnLoad() function to load the space.
Namespace: Com.Tibco.As.SpaceAssembly: TIBCO.ActiveSpaces.Common (in TIBCO.ActiveSpaces.Common.dll) Version: 2.0.0.0 (2.1.5.12)
SyntaxSub Load (
tuple As Tuple
)
void Load(
Tuple^ tuple
)
abstract Load :
tuple : Tuple -> unit
Parameters
- tuple
- Type: Com.Tibco.As.SpaceTuple
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