BMPSourceMetadataChangedEvent
Objective-C
@interface BMPSourceMetadataChangedEvent : BMPPlayerEvent
Swift
class SourceMetadataChangedEvent : PlayerEvent
See BMPPlayerListener.h for more information on this event.
-
Contains metadata which was removed
Declaration
Objective-C
@property (nonatomic, copy, nullable) NSDictionary<NSString *, id<NSObject, NSCopying>> *from;
Swift
var from: [String : NSCopying & NSObjectProtocol]? { get set }
-
Contains metadata which was added
Declaration
Objective-C
@property (nonatomic, copy, nullable) NSDictionary<NSString *, id<NSObject, NSCopying>> *to;
Swift
var to: [String : NSCopying & NSObjectProtocol]? { get set }
-
Undocumented
Declaration
Objective-C
- (instancetype)initWithOldMetadata:(nullable NSDictionary<NSString *, id<NSObject, NSCopying>> *)oldMetadata newMetadata:(nullable NSDictionary<NSString *, id<NSObject, NSCopying>> *)newMetadata NS_DESIGNATED_INITIALIZER;
Swift
init(oldMetadata: [String : NSCopying & NSObjectProtocol]?, newMetadata: [String : NSCopying & NSObjectProtocol]?)