Defines how much miliseconds will the http requests wait before failing with a timeout. If set to 0, no value will be specifically defined, so the httpmanager default will be used.
The url that will be called as part of this request
A method to be executed if an error happens to the request execution. The callback function must have the following signature: (errorMsg:string, errorCode:number) => void
errorMsg will contain the error text and errorCode will contain the numeric error http value
A method to be executed always when the request finishes, even successfully or with an error. The callback function must have the following signature: () => void
A method to be executed inmediately after the request execution finishes successfully. The callback function must have the following signature: (response: string) => void
Generated using TypeDoc
Class that defines the base http request to be used with http manager