Class PlayerMessage


  • @Deprecated
    public final class PlayerMessage
    extends Object
    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.
    Defines a player message which can be sent with a PlayerMessage.Sender and received by a PlayerMessage.Target.
    • Constructor Detail

      • PlayerMessage

        public PlayerMessage​(PlayerMessage.Sender sender,
                             PlayerMessage.Target target,
                             Timeline timeline,
                             int defaultMediaItemIndex,
                             Clock clock,
                             Looper defaultLooper)
        Deprecated.
        Creates a new message.
        Parameters:
        sender - The PlayerMessage.Sender used to send the message.
        target - The PlayerMessage.Target the message is sent to.
        timeline - The timeline used when setting the position with setPosition(long). If set to Timeline.EMPTY, any position can be specified.
        defaultMediaItemIndex - The default media item index in the timeline when no other media item index is specified.
        clock - The Clock.
        defaultLooper - The default Looper to send the message on when no other looper is specified.
    • Method Detail

      • getTimeline

        public Timeline getTimeline()
        Deprecated.
        Returns the timeline used for setting the position with setPosition(long).
      • getTarget

        public PlayerMessage.Target getTarget()
        Deprecated.
        Returns the target the message is sent to.
      • getLooper

        public Looper getLooper()
        Deprecated.
        Returns the Looper the message is delivered on.
      • setPosition

        @CanIgnoreReturnValue
        public PlayerMessage setPosition​(long positionMs)
        Deprecated.
        Sets a position in the current media item at which the message will be delivered.
        Parameters:
        positionMs - The position in the current media item at which the message will be sent, in milliseconds, or C.TIME_END_OF_SOURCE to deliver the message at the end of the current media item.
        Returns:
        This message.
        Throws:
        IllegalStateException - If send() has already been called.
      • setPosition

        @CanIgnoreReturnValue
        public PlayerMessage setPosition​(int mediaItemIndex,
                                         long positionMs)
        Deprecated.
        Sets a position in a media item at which the message will be delivered.
        Parameters:
        mediaItemIndex - The index of the media item at which the message will be sent.
        positionMs - The position in the media item with index mediaItemIndex at which the message will be sent, in milliseconds, or C.TIME_END_OF_SOURCE to deliver the message at the end of the media item with index mediaItemIndex.
        Returns:
        This message.
        Throws:
        IllegalSeekPositionException - If the timeline returned by getTimeline() is not empty and the provided media item index is not within the bounds of the timeline.
        IllegalStateException - If send() has already been called.
      • getMediaItemIndex

        public int getMediaItemIndex()
        Deprecated.
        Returns media item index at which the message will be delivered.
      • setDeleteAfterDelivery

        @CanIgnoreReturnValue
        public PlayerMessage setDeleteAfterDelivery​(boolean deleteAfterDelivery)
        Deprecated.
        Sets whether the message will be deleted after delivery. If false, the message will be resent if playback reaches the specified position again. Only allowed to be false if a position is set with setPosition(long).
        Parameters:
        deleteAfterDelivery - Whether the message is deleted after delivery.
        Returns:
        This message.
        Throws:
        IllegalStateException - If send() has already been called.
      • getDeleteAfterDelivery

        public boolean getDeleteAfterDelivery()
        Deprecated.
        Returns whether the message will be deleted after delivery.
      • isCanceled

        public boolean isCanceled()
        Deprecated.
        Returns whether the message delivery has been canceled.
      • markAsProcessed

        public void markAsProcessed​(boolean isDelivered)
        Deprecated.
        Marks the message as processed. Should only be called by a PlayerMessage.Sender and may be called multiple times.
        Parameters:
        isDelivered - Whether the message has been delivered to its target. The message is considered as being delivered when this method has been called with isDelivered set to true at least once.
      • blockUntilDelivered

        public boolean blockUntilDelivered()
                                    throws InterruptedException
        Deprecated.
        Blocks until after the message has been delivered or the player is no longer able to deliver the message.

        Note that this method must not be called if the current thread is the same thread used by the message looper as it would cause a deadlock.

        Returns:
        Whether the message was delivered successfully.
        Throws:
        IllegalStateException - If this method is called before send().
        IllegalStateException - If this method is called on the same thread used by the message looper.
        InterruptedException - If the current thread is interrupted while waiting for the message to be delivered.
      • blockUntilDelivered

        public boolean blockUntilDelivered​(long timeoutMs)
                                    throws InterruptedException,
                                           TimeoutException
        Deprecated.
        Blocks until after the message has been delivered or the player is no longer able to deliver the message or the specified timeout elapsed.

        Note that this method must not be called if the current thread is the same thread used by the message looper as it would cause a deadlock.

        Parameters:
        timeoutMs - The timeout in milliseconds.
        Returns:
        Whether the message was delivered successfully.
        Throws:
        IllegalStateException - If this method is called before send().
        IllegalStateException - If this method is called on the same thread used by the message looper.
        TimeoutException - If the timeoutMs elapsed and this message has not been delivered and the player is still able to deliver the message.
        InterruptedException - If the current thread is interrupted while waiting for the message to be delivered.