Interface PlaybackSessionManager
-
- All Known Implementing Classes:
DefaultPlaybackSessionManager
@Deprecated public interface PlaybackSessionManager
Deprecated.com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.Manager for active playback sessions.The manager keeps track of the association between window index and/or media period id to session identifier.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
PlaybackSessionManager.Listener
Deprecated.A listener for session updates.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
belongsToSession(AnalyticsListener.EventTime eventTime, String sessionId)
Deprecated.Returns whether an event time belong to a session.void
finishAllSessions(AnalyticsListener.EventTime eventTime)
Deprecated.Finishes all existing sessions and calls their respectivePlaybackSessionManager.Listener.onSessionFinished(EventTime, String, boolean)
callback.String
getActiveSessionId()
Deprecated.Returns the session identifier of the session that is currently actively playing, ornull
if there no such session.String
getSessionForMediaPeriodId(Timeline timeline, MediaSource.MediaPeriodId mediaPeriodId)
Deprecated.Returns the session identifier for the given media period id.void
setListener(PlaybackSessionManager.Listener listener)
Deprecated.Sets the listener to be notified of session updates.void
updateSessions(AnalyticsListener.EventTime eventTime)
Deprecated.Updates or creates sessions based on a playerAnalyticsListener.EventTime
.void
updateSessionsWithDiscontinuity(AnalyticsListener.EventTime eventTime, @com.google.android.exoplayer2.Player.DiscontinuityReason int reason)
Deprecated.Updates or creates sessions based on a position discontinuity atAnalyticsListener.EventTime
.void
updateSessionsWithTimelineChange(AnalyticsListener.EventTime eventTime)
Deprecated.Updates or creates sessions based on aTimeline
change atAnalyticsListener.EventTime
.
-
-
-
Method Detail
-
setListener
void setListener(PlaybackSessionManager.Listener listener)
Deprecated.Sets the listener to be notified of session updates. Must be called before the session manager is used.- Parameters:
listener
- ThePlaybackSessionManager.Listener
to be notified of session updates.
-
getSessionForMediaPeriodId
String getSessionForMediaPeriodId(Timeline timeline, MediaSource.MediaPeriodId mediaPeriodId)
Deprecated.Returns the session identifier for the given media period id.Note that this will reserve a new session identifier if it doesn't exist yet, but will not call any
PlaybackSessionManager.Listener
callbacks.- Parameters:
timeline
- The timeline,mediaPeriodId
is part of.mediaPeriodId
- AMediaSource.MediaPeriodId
.
-
belongsToSession
boolean belongsToSession(AnalyticsListener.EventTime eventTime, String sessionId)
Deprecated.Returns whether an event time belong to a session.- Parameters:
eventTime
- TheAnalyticsListener.EventTime
.sessionId
- A session identifier.- Returns:
- Whether the event belongs to the specified session.
-
updateSessions
void updateSessions(AnalyticsListener.EventTime eventTime)
Deprecated.Updates or creates sessions based on a playerAnalyticsListener.EventTime
.Call
updateSessionsWithTimelineChange(EventTime)
orupdateSessionsWithDiscontinuity(EventTime, int)
if the event is aTimeline
change or a position discontinuity respectively.- Parameters:
eventTime
- TheAnalyticsListener.EventTime
.
-
updateSessionsWithTimelineChange
void updateSessionsWithTimelineChange(AnalyticsListener.EventTime eventTime)
Deprecated.Updates or creates sessions based on aTimeline
change atAnalyticsListener.EventTime
.Should be called instead of
updateSessions(EventTime)
if aTimeline
change occurred.- Parameters:
eventTime
- TheAnalyticsListener.EventTime
with the timeline change.
-
updateSessionsWithDiscontinuity
void updateSessionsWithDiscontinuity(AnalyticsListener.EventTime eventTime, @DiscontinuityReason @com.google.android.exoplayer2.Player.DiscontinuityReason int reason)
Deprecated.Updates or creates sessions based on a position discontinuity atAnalyticsListener.EventTime
.Should be called instead of
updateSessions(EventTime)
if a position discontinuity occurred.- Parameters:
eventTime
- TheAnalyticsListener.EventTime
of the position discontinuity.reason
- ThePlayer.DiscontinuityReason
.
-
getActiveSessionId
@Nullable String getActiveSessionId()
Deprecated.Returns the session identifier of the session that is currently actively playing, ornull
if there no such session.
-
finishAllSessions
void finishAllSessions(AnalyticsListener.EventTime eventTime)
Deprecated.Finishes all existing sessions and calls their respectivePlaybackSessionManager.Listener.onSessionFinished(EventTime, String, boolean)
callback.- Parameters:
eventTime
- The event time at which sessions are finished.
-
-