28 lines
485 B
Objective-C
28 lines
485 B
Objective-C
//
|
|
// ALCMessagingService.h
|
|
// AppLovinSDK
|
|
//
|
|
// Created by Thomas So on 7/16/19.
|
|
//
|
|
|
|
@class ALCMessage;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* Service class of the Communicator SDK responsible for managing and publishing messages.
|
|
*/
|
|
@interface ALCMessagingService : NSObject
|
|
|
|
/**
|
|
* Publish the given message to the pub/sub system.
|
|
*/
|
|
- (void)publishMessage:(ALCMessage *)message;
|
|
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
+ (instancetype)new NS_UNAVAILABLE;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|