API / geotoolkit / map / sources / connectors / Proxy / Proxy
connectors.Proxy.Proxy
Source connector that proxies another connector's request using the callback provided by user
↳
Proxy
Constructors
Methods
Methods
▸ abort(key?): Proxy
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(connection): Proxy
Aborts the connection provided
| Name | Type | Description |
|---|---|---|
connection | any | connection to abort |
this
AbstractConnector.abortConnection
▸ Protected addConnection(key, connection): Proxy
Adds connection to the list
| Name | Type | Description |
|---|---|---|
key | string | key of the connection (null if no provided) |
connection | any | connection to add to the list |
this
AbstractConnector.addConnection
▸ clone(): AbstractConnector<any>
All subclasses should override copyConstructor or provide custom implementation for this method
AbstractConnector<any>
clone
▸ getClassName(): string
string
AbstractConnector.getClassName
▸ Protected getConnection(key): any
Returns connection by the key
| Name | Type | Description |
|---|---|---|
key | string | key for the connection |
any
connection
AbstractConnector.getConnection
▸ isLoading(): boolean
Checks if some connections are still loading
boolean
▸ Protected removeConnection(key, connection): Proxy
Removes connection from the list
| Name | Type | Description |
|---|---|---|
key | string | key of the connection (null if no provided) |
connection | any | 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