import { Disposable, DisposableGroup } from './disposable'; import { MaybePromise } from './types'; /** * Represents a typed event. */ export interface Event { /** * * @param listener The listener function will be call when the event happens. * @param thisArgs The 'this' which will be used when calling the event listener. * @param disposables An array to which a {{IDisposable}} will be added. * @return a disposable to remove the listener again. */ (listener: (e: T) => any, thisArgs?: any, disposables?: DisposableGroup): Disposable; } export declare namespace Event { function getMaxListeners(event: Event): number; function setMaxListeners(event: Event, maxListeners: N): N; function addMaxListeners(event: Event, add: number): number; const None: Event; /** * Given an event and a `map` function, returns another event which maps each element * through the mapping function. */ function map(event: Event, mapFunc: (i: I) => O): Event; } declare type Callback = (...args: any[]) => any; declare class CallbackList implements Iterable { private _callbacks; private _contexts; get length(): number; add(callback: Function, context?: any, bucket?: Disposable[]): void; remove(callback: Function, context?: any): void; [Symbol.iterator](): IterableIterator<(...args: any[]) => any>; invoke(...args: any[]): any[]; isEmpty(): boolean; dispose(): void; } export interface EmitterOptions { onFirstListenerAdd?: Function; onLastListenerRemove?: Function; } export declare class Emitter { private _options?; private static LEAK_WARNING_THRESHHOLD; private static _noop; private _event; protected _callbacks: CallbackList | undefined; private _disposed; private _leakingStacks; private _leakWarnCountdown; constructor(_options?: EmitterOptions | undefined); /** * For the public to allow to subscribe * to events from this Emitter */ get event(): Event; protected checkMaxListeners(maxListeners: number): (() => void) | undefined; protected pushLeakingStack(): () => void; protected popLeakingStack(stack: string): void; /** * To be kept private to fire an event to * subscribers */ fire(event: T): any; /** * Process each listener one by one. * Return `false` to stop iterating over the listeners, `true` to continue. */ sequence(processor: (listener: (e: T) => any) => MaybePromise): Promise; dispose(): void; } export declare type WaitUntilData = Omit; export interface WaitUntilEvent { /** * A cancellation token. */ token: CancellationToken; /** * Allows to pause the event loop until the provided thenable resolved. * * *Note:* It can only be called during event dispatch and not in an asynchronous manner * * @param thenable A thenable that delays execution. */ waitUntil(thenable: Promise): void; } export declare namespace WaitUntilEvent { /** * Fire all listeners in the same tick. * * Use `AsyncEmitter.fire` to fire listeners async one after another. */ function fire(emitter: Emitter, event: WaitUntilData, timeout?: number, token?: CancellationToken): Promise; } import { CancellationToken } from './cancellation'; export declare class AsyncEmitter extends Emitter { protected deliveryQueue: Promise | undefined; /** * Fire listeners async one after another. */ fire(event: WaitUntilData, token?: CancellationToken, promiseJoin?: (p: Promise, listener: Function) => Promise): Promise; protected deliver(listeners: Callback[], event: WaitUntilData, token: CancellationToken, promiseJoin?: (p: Promise, listener: Function) => Promise): Promise; } export {}; //# sourceMappingURL=event.d.ts.map