This method should be called when using an embedded Brightstar clients when a program is about to terminate. This ensures all job threads are properly terminated and the application can exit.

Namespace: BrightstarDB.Client
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
public static void Shutdown(
	bool allowJobsToConclude = true
)
Visual Basic
Public Shared Sub Shutdown ( 
	Optional allowJobsToConclude As Boolean = true
)
Visual C++
public:
static void Shutdown(
	bool allowJobsToConclude = true
)
F#
static member Shutdown : 
        ?allowJobsToConclude : bool 
(* Defaults:
        let _allowJobsToConclude = defaultArg allowJobsToConclude true
*)
-> unit 

Parameters

allowJobsToConclude (Optional)
Type: System..::..Boolean
If true all stores will complete any registered jobs. If false, only the current running job is allowed to conclude and all other queued jobs are lost.

See Also