OOAnalyticsPluginProtocol.h
1 
13 #import <Foundation/Foundation.h>
14 #import "OOOoyalaPlayer.h"
15 #import "OOLifeCycle.h"
16 #import "OOSeekInfo.h"
17 
18 @protocol OOAnalyticsPluginProtocol <NSObject>
19 
23 - (void)onCurrentItemAboutToPlay:(OOVideo *)video;
24 
28 - (void)reportPlayStarted;
29 
33 - (void)reportPlayPaused;
34 
38 - (void)reportPlayResumed;
39 
43 - (void)reportPlayCompleted;
44 
48 - (void)reportPlayerLoad;
49 
53 - (void)reportPlayheadUpdate:(Float64)playheadTime;
54 
58 - (void)reportReplay;
59 
63 - (void)reportPlayRequested;
67 - (void)reportSeekStarted:(OOSeekInfo *)seekInfo;
68 
69 @end
Definition: OOSeekInfo.h:11
this class implements video stream object
Definition: OOVideo.h:22