Package com.google.android.exoplayer2
Class ExoTimeoutException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.google.android.exoplayer2.ExoTimeoutException
-
- All Implemented Interfaces:
Serializable
@Deprecated public final class ExoTimeoutException extends RuntimeException
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.A timeout of an operation on the ExoPlayer playback thread.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
ExoTimeoutException.TimeoutOperation
Deprecated.The operation which produced the timeout error.
-
Field Summary
Fields Modifier and Type Field Description static int
TIMEOUT_OPERATION_DETACH_SURFACE
Deprecated.The error occurred while detaching a surface from the player.static int
TIMEOUT_OPERATION_RELEASE
Deprecated.The error occurred inPlayer.release()
.static int
TIMEOUT_OPERATION_SET_FOREGROUND_MODE
Deprecated.The error occurred inExoPlayer.setForegroundMode(boolean)
.static int
TIMEOUT_OPERATION_UNDEFINED
Deprecated.The operation where this error occurred is not defined.@com.google.android.exoplayer2.ExoTimeoutException.TimeoutOperation int
timeoutOperation
Deprecated.The operation on the ExoPlayer playback thread that timed out.
-
Constructor Summary
Constructors Constructor Description ExoTimeoutException(@com.google.android.exoplayer2.ExoTimeoutException.TimeoutOperation int timeoutOperation)
Deprecated.Creates the timeout exception.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
TIMEOUT_OPERATION_UNDEFINED
public static final int TIMEOUT_OPERATION_UNDEFINED
Deprecated.The operation where this error occurred is not defined.- See Also:
- Constant Field Values
-
TIMEOUT_OPERATION_RELEASE
public static final int TIMEOUT_OPERATION_RELEASE
Deprecated.The error occurred inPlayer.release()
.- See Also:
- Constant Field Values
-
TIMEOUT_OPERATION_SET_FOREGROUND_MODE
public static final int TIMEOUT_OPERATION_SET_FOREGROUND_MODE
Deprecated.The error occurred inExoPlayer.setForegroundMode(boolean)
.- See Also:
- Constant Field Values
-
TIMEOUT_OPERATION_DETACH_SURFACE
public static final int TIMEOUT_OPERATION_DETACH_SURFACE
Deprecated.The error occurred while detaching a surface from the player.- See Also:
- Constant Field Values
-
timeoutOperation
@TimeoutOperation public final @com.google.android.exoplayer2.ExoTimeoutException.TimeoutOperation int timeoutOperation
Deprecated.The operation on the ExoPlayer playback thread that timed out.
-
-
Constructor Detail
-
ExoTimeoutException
public ExoTimeoutException(@TimeoutOperation @com.google.android.exoplayer2.ExoTimeoutException.TimeoutOperation int timeoutOperation)
Deprecated.Creates the timeout exception.- Parameters:
timeoutOperation
- Theoperation
that produced the timeout.
-
-