API / geotoolkit / map / sources / connectors / HttpRequest / HttpRequest
connectors.HttpRequest.HttpRequest
Source connector that sends requests by creating XMLHttpRequest with appropriate GET request
↳
HttpRequest
Constructors
Methods
Constructors
• new HttpRequest(options?)
| Name | Type | Description |
|---|---|---|
Optional options | Options | options |
AbstractConnector<Cancel&gt;.constructor
Methods
▸ abort(key?): HttpRequest
Aborts the previous queries sent
| Name | Type | Description |
|---|---|---|
Optional key | string | key of the queries to abort (all queries aborted if nothing provided) |
this
▸ Protected abortConnection(request): HttpRequest
Aborts the connection provided
| Name | Type | Description |
|---|---|---|
request | Cancel | connection to abort |
this
AbstractConnector.abortConnection
▸ Protected addConnection(key, connection): HttpRequest
Adds connection to the list
| Name | Type | Description |
|---|---|---|
key | string | key of the connection (null if no provided) |
connection | Cancel | connection to add to the list |
this
AbstractConnector.addConnection
▸ clone(): AbstractConnector<Cancel>
All subclasses should override copyConstructor or provide custom implementation for this method
clone
▸ getClassName(): string
string
AbstractConnector.getClassName
▸ Protected getConnection(key): Cancel
Returns connection by the key
| Name | Type | Description |
|---|---|---|
key | string | key for the connection |
connection
AbstractConnector.getConnection
▸ isLoading(): boolean
Checks if some connections are still loading
boolean
▸ Protected removeConnection(key, connection): HttpRequest
Removes connection from the list
| Name | Type | Description |
|---|---|---|
key | string | key of the connection (null if no provided) |
connection | Cancel | connection to remvoe from the list |
this
AbstractConnector.removeConnection
▸ send(url, options, callback): void
Sends a request using the query provided
| Name | Type | Description |
|---|---|---|
url | string | the url requested |
options | SendOptions | extra options for the request (null if no needed) |
callback | SendCallback | the result handler that's called when response is received |
void
▸ Static getClassName(): string
string