Click or drag to resize

Telogis.GeoBase.Concurrency Namespace

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release

The Telogis.GeoBase.Concurrency namespace provides classes to support synchronous and asynchronous operations.

Classes
  ClassDescription
Public classCode exampleAsyncResultT
An object to track the status of an operation that may be performed either synchronously or asynchronously. See remarks.
Public classCode exampleCancellationToken
Propagates a request for a method call to be canceled before completion.
Public classCode exampleDeferred
An object to wait for the status of a one time operation. See remarks.
Public classSyncResultT
An object to track the status of an operation that is using the IAsyncResult pattern but will be completed synchronously.
Delegates
  DelegateDescription
Public delegateAsyncResultTAsyncActionDelegate
The type of callback that takes an AsyncResult object and executes an operation (either synchronously or asynchronously). When the operation is completed, SetResult or SetException method can be called on the AsyncResult object.
Public delegateDeferredDeferredAction
An arbitrary action.
Public delegateDeferredExceptionHandler
Called when an application exception occurs.