projects/wms-framework/src/lib/wcfserviceinvocationsupport/AsyncResultSupport.ts
IAsyncResult interface
Properties |
|
AsyncState |
AsyncState:
|
Type : any
|
callback |
callback:
|
Type : function
|
Optional |
classConstructor |
classConstructor:
|
Type : any
|
Optional |
Stores the result extected type. Used for deserialization |
IsCompleted |
IsCompleted:
|
Type : boolean
|
import { Exception } from '../baseframework/Exceptions';
/**
* IAsyncResult interface
* @export
* @wInterface System.IAsyncResult
*/
export interface IAsyncResult {
AsyncState: any;
IsCompleted: boolean;
/**
* Stores the result extected type. Used for deserialization
*
* @type {any[]}
* @memberof InvokeAsyncCompletedEventArgs
*/
classConstructor?: any;
callback?: (x: any) => void;
}
export type AsyncCallback = (ar: IAsyncResult) => void;