TKRoomSDK Playback Delegate Callback
TKPlayBackManagerObserver
- TKPlayBackManagerObserver is an extension of the main delegate protocol TKRoomManagerObserver of TKRoomSDK, primarily focusing on playback-related delegate protocols.
onPlayBackDuration
-
A brief description - The callback for playback start and end times
-
Callback Name
- void onPlayBackDuration(long recordStartTime, long recordEndTime);
- Parameters
Parameter Name | Type | Description |
---|---|---|
recordStartTime | long | starting time |
recordEndTime | long | ending time |
onPlayBackUpdateTime
-
A brief Description - Playback Progress Update
-
Callback Name
- void onPlayBackUpdateTime(long recordStartTime);
- Parameters
Parameter Name | Type | Description |
---|---|---|
recordStartTime | long | progress time point |
onPlayBackClearAll
-
A brief Description - Playback Cleanup
-
Callback Name
- void onPlayBackClearAll();
- Parameters
None
onPlayBackEnd
-
A brief Description - Playback Ends
-
Callback Name
- void onPlayBackEnd();
- Parameters
None