UM .NET API
6.16.1
|
LBMOperationCompleteCallback class. More...
Public Member Functions | |
delegate void | LBMOperationComplete (object cbArg) |
Operation Complete delegate. A method matching this delegate may be passed to the LBMOperationCompleteCallback constructor if a simple callback is desired when an operation is complete. | |
LBMOperationCompleteCallback () | |
Instantiate a default LBMOperationCompleteCallback. This constructor should be called by subclasses that wish to supress garbage collection until Dispose() is called. | |
LBMOperationCompleteCallback (LBMOperationComplete cb) | |
Instantiate an LBMOperationCompleteCallback that invokes an LBMOperationComplete delegate. More... | |
void | Dispose () |
Dispose of a callback object. Subclasses that wish to supress garbage collection should call the default constructor and then call this method when they no longer need the callback. | |
LBMOperationCompleteCallback class.
This class should be used when notification of completion of a long-running operation is desired.
com.latencybusters.lbm.LBMOperationCompleteCallback.LBMOperationCompleteCallback | ( | LBMOperationComplete | cb | ) |
Instantiate an LBMOperationCompleteCallback that invokes an LBMOperationComplete delegate.
cb | Callback to be invoked when the operation is complete. |