RNNotificationsBridgeQueue.m 340 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#import "RNNotificationsBridgeQueue.h"

@implementation RNNotificationsBridgeQueue

+ (nonnull instancetype)sharedInstance {
    static RNNotificationsBridgeQueue* sharedInstance = nil;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        sharedInstance = [self new];
    });
    
    return sharedInstance;
}
@end