Click or drag to resize

CefThreadId Enumeration

Existing thread IDs.

Namespace:  Internal.Xilium.CefGlue
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
public enum CefThreadId
Members
  Member nameValueDescription
UI0 The main thread in the browser. This will be the same as the main application thread if CefInitialize() is called with a CefSettings.multi_threaded_message_loop value of false.
DB1 Used to interact with the database.
File2 Used to interact with the file system.
FileUserBlocking3 Used for file system operations that block user interactions. Responsiveness of this thread affects users.
ProcessLauncher4 Used to launch and terminate browser processes.
Cache5 Used to handle slow HTTP cache operations.
IO6 Used to process IPC and network messages.
Renderer7 The main thread in the renderer. Used for all WebKit and V8 interaction.
See Also