123456789101112131415161718192021222324252627 |
- //
- // 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
|