ALCEntity.h 536 B

1234567891011121314151617181920212223
  1. //
  2. // ALCEntity.h
  3. // AppLovinSDK
  4. //
  5. // Created by Thomas So on 7/21/19.
  6. //
  7. NS_ASSUME_NONNULL_BEGIN
  8. /**
  9. * This protocol concerns an entity (publisher or subscriber) in the AppLovin pub/sub system.
  10. */
  11. @protocol ALCEntity <NSObject>
  12. /**
  13. * Unique identifier representing the entity (publisher or subscriber) in the AppLovin pub/sub system.
  14. * Currently used for debugging purposes only - so please provide an easily distinguishable identifier (e.g. "safedk").
  15. */
  16. - (NSString *)communicatorIdentifier;
  17. @end
  18. NS_ASSUME_NONNULL_END