File

projects/wms-framework/src/lib/wcfserviceinvocationsupport/AsyncResultSupport.ts

Description

IAsyncResult interface

Index

Properties

Properties

AsyncState
AsyncState: any
Type : any
callback
callback: function
Type : function
Optional
classConstructor
classConstructor: any
Type : any
Optional

Stores the result extected type. Used for deserialization

IsCompleted
IsCompleted: boolean
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;

result-matching ""

    No results matching ""