[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

turns callback methods on and off.

Namespace: Db4objects.Db4o.Config
Assembly:   Db4objects.Db4o (in Db4objects.Db4o.dll)

Syntax

Visual Basic (Declaration)
Sub Callbacks ( _
	flag As Boolean _
)
C#
void Callbacks (
	bool flag
)
Visual C++
void Callbacks (
	bool flag
)

Parameters

flag
System.Boolean
false to turn callback methods off

Remarks

turns callback methods on and off.

Callbacks are turned on by default.

A tuning hint: If callbacks are not used, you can turn this feature off, to prevent db4o from looking for callback methods in persistent classes. This will increase the performance on system startup.

See Also