Contents

enqueue(_:postingStyle:)

Adds a notification to the notification queue with a specified posting style.

Declaration

func enqueue(_ notification: Notification, postingStyle: NotificationQueue.PostingStyle)

Parameters

  • notification:

    The notification to add to the queue.

  • postingStyle:

    The posting style for the notification. The posting style indicates when the notification queue should post the notification to its notification center.

Discussion

This is a convenience method for calling enqueue(_:postingStyle:coalesceMask:forModes:) with coalescing criteria that will coalesce only notifications that match both the notification’s name and object and the runloop mode default.

See Also

Managing Notifications