API / geotoolkit / util / EventDispatcher / EventDispatcher
util.EventDispatcher.EventDispatcher
Type Aliases
Type Aliases
Ƭ EventListener: (type: string, source: any, args?: any) => void
▸ (type, source, args?): void
| Name | Type |
|---|---|
type | string |
source | any |
Optional args | any |
void
Ƭ EventMap: { Disposed: void ; PropertyChanged: string | { name: string ; value: any } } & Record<string, any>
Ƭ Options: Object
| Name | Type | Description |
|---|---|---|
once? | boolean | A boolean value indicating that the listener should be invoked at most once after being added. If true, the listener would be automatically removed when invoked. If not specified, defaults to false. |
Ƭ ShortEventListener: (source: any, args?: any) => void
▸ (source, args?): void
| Name | Type |
|---|---|
source | any |
Optional args | any |
void