OnPlaybackPositionUpdateListener
interface OnPlaybackPositionUpdateListener
android.media.AudioTrack.OnPlaybackPositionUpdateListener |
Interface definition for a callback to be invoked when the playback head position of an AudioTrack has reached a notification marker or has increased by a certain period.
Summary
Public methods | |
---|---|
abstract Unit |
onMarkerReached(track: AudioTrack!) Called on the listener to notify it that the previously set marker has been reached by the playback head. |
abstract Unit |
onPeriodicNotification(track: AudioTrack!) Called on the listener to periodically notify it that the playback head has reached a multiple of the notification period. |
Public methods
onMarkerReached
abstract fun onMarkerReached(track: AudioTrack!): Unit
Called on the listener to notify it that the previously set marker has been reached by the playback head.
onPeriodicNotification
abstract fun onPeriodicNotification(track: AudioTrack!): Unit
Called on the listener to periodically notify it that the playback head has reached a multiple of the notification period.