GBThread Class | ![Verizon Connect Logo](../icons/logo.jpg) |
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
Syntaxpublic static class GBThread
Public NotInheritable Class GBThread
Methods
| Name | Description |
---|
![Public method Public method](../icons/pubmethod.gif) ![Static member Static member](../icons/static.gif) | CreateThread(ParameterizedThreadStart, Repository, String, ThreadPriority) |
Creates a thread.
|
![Public method Public method](../icons/pubmethod.gif) ![Static member Static member](../icons/static.gif) | CreateThread(ThreadStart, Repository, String, ThreadPriority) |
Creates a thread.
|
![Public method Public method](../icons/pubmethod.gif) ![Static member Static member](../icons/static.gif) | CreateThread(ParameterizedThreadStart, Int32, Repository, String, ThreadPriority) |
Creates a thread.
|
![Public method Public method](../icons/pubmethod.gif) ![Static member Static member](../icons/static.gif) | CreateThread(ParameterizedThreadStart, Repository, String, ThreadPriority, BackgroundThread) | Obsolete. |
![Public method Public method](../icons/pubmethod.gif) ![Static member Static member](../icons/static.gif) | CreateThread(ThreadStart, Int32, Repository, String, ThreadPriority) |
Creates a thread.
|
![Public method Public method](../icons/pubmethod.gif) ![Static member Static member](../icons/static.gif) | CreateThread(ThreadStart, Repository, String, ThreadPriority, BackgroundThread) | Obsolete. |
![Public method Public method](../icons/pubmethod.gif) ![Static member Static member](../icons/static.gif) | CreateThread(ParameterizedThreadStart, Int32, Repository, String, ThreadPriority, BackgroundThread) | Obsolete. |
![Public method Public method](../icons/pubmethod.gif) ![Static member Static member](../icons/static.gif) | CreateThread(ThreadStart, Int32, Repository, String, ThreadPriority, BackgroundThread) | Obsolete. |
![Public method Public method](../icons/pubmethod.gif) ![Static member Static member](../icons/static.gif) | RunThread(ThreadStart, Repository, String, ThreadPriority) |
Creates and starts a thread.
|
![Public method Public method](../icons/pubmethod.gif) ![Static member Static member](../icons/static.gif) | RunThread(ThreadStart, Repository, String, ThreadPriority, BackgroundThread) | Obsolete. |
Top
Remarks
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