VisionWallPaperOffline-8-19/HDwallpaper/FW/AppLovinSDK.xcframework/ios-arm64/AppLovinSDK.framework/Headers/ALCMessagingService.h
2024-07-23 15:14:59 +08:00

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