Interface IRemotingEvent

Hierarchy

Index

Properties

Methods

Properties

optional public alias?: Array<string>

[Config Option] (String[])

optional public alternateClassName?: any

[Config Option] (String/String[])

optional public config?: any

[Config Option] (Object)

optional public data?: any

[Config Option] (Object)

optional public extend?: string

[Config Option] (String)

optional public inheritableStatics?: any

[Config Option] (Object)

optional public mixins?: any

[Config Option] (Object)

optional public name?: string

[Config Option] (String)

optional public platformConfig?: any

[Config Option] (Object)

optional public self?: IClass

[Property] (Ext.Class)

optional public singleton?: boolean

[Config Option] (Boolean)

optional public statics?: any

[Config Option] (Object)

optional public uses?: Array<string>

[Config Option] (String[])

Methods

optional public callOverridden(args?: any): any

[Method] Call the original method that was previously overridden with override This method is deprecated as callParent does

Parameters

  • args?: any optional

    Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callOverridden(arguments)

Returns

any

Object Returns the result of calling the overridden method

optional public callParent(args?: any): any

[Method] Call the parent method of the current method

Parameters

  • args?: any optional

    Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callParent(arguments)

Returns

any

Object Returns the result of calling the parent method

optional public callSuper(args?: any): any

[Method] This method is used by an override to call the superclass method but bypass any overridden method

Parameters

  • args?: any optional

    Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callSuper(arguments)

Returns

any

Object Returns the result of calling the superclass method

optional public destroy()

[Method]

optional public getCode(): any

[Method] Returns the value of code

Returns

any

Object

optional public getData(): any

[Method] Returns the value of data

Returns

any

Object

optional public getInitialConfig(name?: string): any

[Method] Returns the initial configuration passed to constructor

Parameters

  • name?: string optional

    String When supplied, value for particular configuration option is returned, otherwise the full config object is returned.

Returns

any

Object/Mixed

optional public getMessage(): string

[Method] Returns the value of message

Returns

string

String

optional public getName(): string

[Method] Returns the value of name

Returns

string

String

optional public getResult(): any

[Method] Returns the value of result

Returns

any

Object

optional public getStatus(): boolean

[Method] Returns the value of status

Returns

boolean

Boolean

optional public getTid(): any

[Method] Returns the value of tid

Returns

any

Object

optional public getTransaction(): ITransaction

[Method] Get the transaction associated with this event

Returns

ITransaction

Ext.direct.Transaction The transaction

optional public getXhr(): any

[Method] Returns the value of xhr

Returns

any

Object

optional public initConfig(instanceConfig?: any): any

[Method] Initialize configuration for this class

Parameters

  • instanceConfig?: any optional

    Object

Returns

any

Object mixins The mixin prototypes as key - value pairs

optional public setCode(code?: any)

[Method] Sets the value of code

Parameters

  • code?: any optional

    Object The new value.

optional public setData(data?: any)

[Method] Sets the value of data

Parameters

  • data?: any optional

    Object The new value.

optional public setMessage(message?: string)

[Method] Sets the value of message

Parameters

  • message?: string optional

    String The new value.

optional public setName(name?: string)

[Method] Sets the value of name

Parameters

  • name?: string optional

    String The new value.

optional public setResult(result?: any)

[Method] Sets the value of result

Parameters

  • result?: any optional

    Object The new value.

optional public setStatus(status?: boolean)

[Method] Sets the value of status

Parameters

  • status?: boolean optional

    Boolean The new value.

optional public setTid(tid?: any)

[Method] Sets the value of tid

Parameters

  • tid?: any optional

    Object The new value.

optional public setTransaction(transaction?: any)

[Method] Sets the value of transaction

Parameters

  • transaction?: any optional

    Object The new value.

optional public setXhr(xhr?: any)

[Method] Sets the value of xhr

Parameters

  • xhr?: any optional

    Object The new value.