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

allows to configure db4o to use a customized byte IO adapter.

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

Syntax

Visual Basic (Declaration)
Sub Io ( _
	adapter As IoAdapter _
)
C#
void Io (
	IoAdapter adapter
)
Visual C++
void Io (
	IoAdapter^ adapter
)

Parameters

adapter
Db4objects.Db4o.IO.IoAdapter
- the IoAdapter

Remarks

allows to configure db4o to use a customized byte IO adapter.

Derive from the abstract class Db4objects.Db4o.IO.IoAdapter to write your own. Possible usecases could be improved performance with a native library, mirrored write to two files or read-on-write fail-safety control.

Sample IoAdapters are supplied with the distribution as source code.