SyncManager.GetRendezvous

Syntax

SyncManager.GetRendezvous( name)

Return Value

Rendezvous

Purpose

Returns a reference to the Synchronization object for which you specify a name or returns NULL when no such object exists. When a Synchronization object with the name you specify exists but is of the wrong type, this method returns an error.

Parameters

name As String

[In] Specifies a unique name for the Synchronization object. When the Synchronization object name begins with an asterisk, * , such as *syncobjectname , the object can be shared between processes.

When the Synchronization object name begins with a computer name, such as \\computername\syncobjectname , the object can be shared among computers and resides on the computer for which you specify a name.

When the Synchronization object name begins with an asterisk or computer name, you can use a 32 or 64 prefix to specify using 32- or 64-bit TestStand to host the out-of-process Synchronization object. For example, the name 64*syncobj specifies a Synchronization object called *syncobj in the 64-bit TestStand host process, even when used from 32-bit TestStand. Use the prefix to share Synchronization objects between 32-bit TestStand and 64-bit TestStand in the same host process. If you do not use the prefix, 32-bit TestStand hosts out-of-process Synchronization objects in a 32-bit process, and 64-bit TestStand hosts out-of-process Synchronization objects in a 64-bit process.