GBThread Class | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Utility class to create threads, which helps ensure that all threads are named and have an
appropriate Repository as their CurrentThreadRepository.
Inheritance Hierarchy
Namespace:
Telogis.GeoBase
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public static class GBThread
Public NotInheritable Class GBThread
Methods
| Name | Description |
---|
| CreateThread(ParameterizedThreadStart, Repository, String, ThreadPriority) |
Creates a thread.
|
| CreateThread(ThreadStart, Repository, String, ThreadPriority) |
Creates a thread.
|
| CreateThread(ParameterizedThreadStart, Int32, Repository, String, ThreadPriority) |
Creates a thread.
|
| CreateThread(ParameterizedThreadStart, Repository, String, ThreadPriority, BackgroundThread) | Obsolete. |
| CreateThread(ThreadStart, Int32, Repository, String, ThreadPriority) |
Creates a thread.
|
| CreateThread(ThreadStart, Repository, String, ThreadPriority, BackgroundThread) | Obsolete. |
| CreateThread(ParameterizedThreadStart, Int32, Repository, String, ThreadPriority, BackgroundThread) | Obsolete. |
| CreateThread(ThreadStart, Int32, Repository, String, ThreadPriority, BackgroundThread) | Obsolete. |
| RunThread(ThreadStart, Repository, String, ThreadPriority) |
Creates and starts a thread.
|
| RunThread(ThreadStart, Repository, String, ThreadPriority, BackgroundThread) | Obsolete. |
TopRemarks
Typically the caller will specify Repository.CurrentRepositoryOrNull as the new thread's
Repository. This allows the new thread to use the calling thread's CurrentThreadRepository
(if it has been set explicitly), otherwise the new thread will use the application's
Repository.Default.
See Also