db4o

Configuration.singleThreadedClient Method 

configures the client messaging system to be single threaded or multithreaded.

[Visual Basic]
Sub singleThreadedClient( _ 
   ByVal flag As Boolean _ 
)
[C#]
void singleThreadedClient(
   bool flag
);
[C++]
void singleThreadedClient(
   bool flag
);
[JScript]
function singleThreadedClient(
   bool flag
);

Parameters

flag
the desired setting

Remarks

configures the client messaging system to be single threaded or multithreaded.

Recommended settings:
-

true
for low ressource systems.
-
false
for best asynchronous performance and fast GUI response.

Default value:
- .NET Compactframework:
true

- all other plaforms:
false


See Also

Configuration Interface | com.db4o.config Namespace