Copyright © TIBCO Software Inc. All Rights Reserved
Copyright © TIBCO Software Inc. All Rights Reserved


Chapter 3 Space : Space Operations and Options Initialization Operations : tibasSpace_LockAllEx()

tibasSpace_LockAllEx()
Function
Declaration
tibas_status tibasSpace_LockAllEx(
tibasSpace            space,
tibasSpaceResultList* resultList,
tibasTupleList        keyList,
tibasLockOptions      options)
Purpose
Batch version of the lock operation. Requires a list of key value tuples to take and returns a list of results.
Parameters
 
Provide a tibasLockpOtions structure that specifies the options for the lock.
Remarks
Use the tibasSpace_LockAllEx() function to lock a tuples whose key values are specified in a specified keyList. You can also specify lock wait and forget options for the lock operation.
You can use the options parameter to provide a tibasLockpOtions structure that specifies the options for the lock. The tibasLockOptions structure is defined as follows:
struct _tibasLockOptions {
tibas_long lockWait;
tibas_boolean forget;
}
The lock options are defined as follows:
lockWait Specifies a lock wait time, in milliseconds.
forget Specify this option if you want the system to forget the return. This is useful if you do not need the tuple.
See Also
tibasSpace_Lock(), tibasSpace_LockEx(), tibasSpace_LockAllEx(), tibasSpace_Unlock(), tibasSpace_UnlockAll()
 

Copyright © TIBCO Software Inc. All Rights Reserved
Copyright © TIBCO Software Inc. All Rights Reserved