Skip Headers

Oracle® Objects for OLE C++ Class Library Developer's Guide
10g Release 1 (10.1)

Part Number B10119-01
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Master Index
Master Index
Go to Feedback page
Feedback

Startup Trigger Method

Applies To

OBinder

OBound

Description

Called when the object binding starts.

OBinder: This trigger method is called at the time the first bound object is added to the binder. It is guaranteed only be called only once for the OBinder instance.

OBound: This trigger method is called immediately after a bound object is bound to a binder. If the binder has not been opened, then GetValue cannot be called by this method.

Usage

virtual oresult Startup(void)

Remarks

For an OBinder object this method will be called the first time that a bound object is successfully added to the OBinder. It will only be called once.

For an OBound this method will be called when the object is bound to an OBinder. Note that if the OBinder object has not been opened yet (usually the case) then GetValue cannot be called by this method.

The default OBound Startup trigger does nothing.

The default OBinder Startup trigger does nothing.