OOUpNextManager.h
1 //
2 // Created by Daniel Kao on 7/6/15.
3 // Copyright (c) 2015 ooyala. All rights reserved.
4 //
5 
6 #import <Foundation/Foundation.h>
7 
8 @class OOReactSkinModel;
9 @class OOOoyalaPlayer;
10 
11 @interface OOUpNextManager : NSObject
12 
13 @property (nonatomic, readonly) BOOL isDismissed;
14 @property (nonatomic, readonly, weak) OOOoyalaPlayer *player;
15 
16 - (instancetype)initWithPlayer:(OOOoyalaPlayer *)player
17  ooReactSkinModel:(OOReactSkinModel *)ooReactSkinModel
18  config:(NSDictionary *)config;
19 
20 - (void)setNextVideo:(NSDictionary *)nextVideo;
21 
22 - (void)playCompletedNotification:(NSNotification *)notification;
23 - (void)currentItemChangedNotification:(NSNotification *)notification;
24 
25 - (void)goToNextVideo;
26 - (void)onDismissPressed;
27 
28 @end
Definition: OOReactSkinModel.h:18
BOOL isDismissed
Definition: OOUpNextManager.h:13
Definition: OOUpNextManager.h:11
void goToNextVideo()
Definition: OOUpNextManager.m:81
void onDismissPressed()
Definition: OOUpNextManager.m:96
The OoyalaPlayer is the heart of the playback system.
Definition: OOOoyalaPlayerFacade.h:58
OOOoyalaPlayer * player
Definition: OOUpNextManager.h:14