-
public interface TickerObserver
The Ticker observer which receives updates of the last and current playhead position.
-
-
Method Summary
Modifier and Type Method Description abstract void
onTick(long lastPlayheadPosition, long currentPlayheadPosition)
A tick represent an poll from the underlying video player. -
-
Method Detail
-
onTick
abstract void onTick(long lastPlayheadPosition, long currentPlayheadPosition)
A tick represent an poll from the underlying video player.
- Parameters:
lastPlayheadPosition
- the last playhead position in millisecondscurrentPlayheadPosition
- the current playhead position in milliseconds
-
-
-
-