tibasSpace_Load()

Loads a tuple into a specified space, but does not trigger a persister's onWrite function. Used in the Onload function provided to implement shared all persistence.

Declaration

tibas_status tibasSpace_Load(
    tibasSpace  space,
    tibasTuple* oldValue,
    tibasTuple  newValue)

Parameters

Parameter Description
space The TIBCO ActiveSpaces entity on which the function is invoked.
oldValue The tuple returned by the function.
newValue The tuple loaded into the space by the function.

Remarks

Use the tibasSpace_Load() function in your application’s implementation of the OnLoad function that is used to implement shared all persistence.

The load function is the only one that can be invoked on a space that is in the loading phase. tibasSpace_Load() behaves exactly like a put, except that it does not trigger an invocation of the persister's onWrite function.