-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNCNotificationDestination-Protocol.h
More file actions
24 lines (19 loc) · 1.06 KB
/
NCNotificationDestination-Protocol.h
File metadata and controls
24 lines (19 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.
//
#import "NSObject-Protocol.h"
@class NCCoalescedNotification, NCNotificationRequest, NCNotificationSectionSettings, NSString;
@protocol NCNotificationDestinationDelegate;
@protocol NCNotificationDestination <NSObject>
@property(readonly, nonatomic) NSString *identifier;
@property(nonatomic) __weak id <NCNotificationDestinationDelegate> delegate;
- (void)withdrawNotificationRequest:(NCNotificationRequest *)arg1 forCoalescedNotification:(NCCoalescedNotification *)arg2;
- (void)modifyNotificationRequest:(NCNotificationRequest *)arg1 forCoalescedNotification:(NCCoalescedNotification *)arg2;
- (void)postNotificationRequest:(NCNotificationRequest *)arg1 forCoalescedNotification:(NCCoalescedNotification *)arg2;
- (_Bool)canReceiveNotificationRequest:(NCNotificationRequest *)arg1;
@optional
- (void)updateNotificationSectionSettings:(NCNotificationSectionSettings *)arg1;
- (_Bool)interceptsQueueRequest:(NCNotificationRequest *)arg1;
@end