The buffer

interface BufferedEventEmitterBuffer {
    context: any;
    created: Date;
    events: BufferedEventEmitterBufferEvents;
    id: string | number;
    lastActivity: Date;
}

Properties

context: any

Extra information about the buffer. You can put anything you want in here.

created: Date

Creation date of the buffer

Store emitted events.

id: string | number

Unique id of the buffer

lastActivity: Date

Date of the last change of the buffer - usually the creation date of the last event.

Generated using TypeDoc