Interface QueueEventsListenerPro

interface QueueEventsListenerPro {
    groups:paused: ((args, id) => void);
    groups:resumed: ((args, id) => void);
}

Hierarchy

Properties

groups:paused: ((args, id) => void)

Listen to 'groups:paused' event.

This event is triggered when a group is paused.

Type declaration

    • (args, id): void
    • Parameters

      • args: {
            groupId: string;
        }
        • groupId: string
      • id: string

      Returns void

groups:resumed: ((args, id) => void)

Listen to 'groups:resumed' event.

This event is triggered when a group is resumed.

Type declaration

    • (args, id): void
    • Parameters

      • args: {
            groupId: string;
        }
        • groupId: string
      • id: string

      Returns void