Last updated

API / geotoolkit / util / EventDispatcher / EventDispatcher

Namespace: EventDispatcher

util.EventDispatcher.EventDispatcher

Table of contents

Type Aliases

Contents

Type Aliases

EventListener

Ƭ EventListener: (type: string, source: any, args?: any) => void

Type declaration

▸ (type, source, args?): void

Parameters
Name Type
typestring
sourceany
Optional argsany
Returns

void


EventMap

Ƭ EventMap: { Disposed: void ; PropertyChanged: string | { name: string ; value: any } } & Record<string, any>


Options

Ƭ Options: Object

Type declaration

NameTypeDescription
once?booleanA 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

Ƭ ShortEventListener: (source: any, args?: any) => void

Type declaration

▸ (source, args?): void

Parameters
Name Type
sourceany
Optional argsany
Returns

void