mirror of
https://github.com/androidx/media.git
synced 2025-04-30 06:46:50 +08:00
Remove AutoClosable implementation of PlayerCommandQueue
PiperOrigin-RevId: 370875532
This commit is contained in:
parent
b336df3ed3
commit
b6f4fbb7dc
@ -39,7 +39,7 @@ import java.util.List;
|
||||
import java.util.concurrent.Callable;
|
||||
|
||||
/** Manages the queue of player actions and handles running them one by one. */
|
||||
/* package */ class PlayerCommandQueue implements AutoCloseable {
|
||||
/* package */ class PlayerCommandQueue {
|
||||
|
||||
private static final String TAG = "PlayerCommandQueue";
|
||||
private static final boolean DEBUG = false;
|
||||
@ -141,9 +141,6 @@ import java.util.concurrent.Callable;
|
||||
@GuardedBy("lock")
|
||||
private final Deque<PlayerCommand> pendingPlayerCommandQueue;
|
||||
|
||||
@GuardedBy("lock")
|
||||
private boolean closed;
|
||||
|
||||
// Should be only used on the handler.
|
||||
@Nullable private AsyncPlayerCommandResult pendingAsyncPlayerCommandResult;
|
||||
|
||||
@ -154,17 +151,6 @@ import java.util.concurrent.Callable;
|
||||
pendingPlayerCommandQueue = new ArrayDeque<>();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void close() {
|
||||
synchronized (lock) {
|
||||
if (closed) {
|
||||
return;
|
||||
}
|
||||
closed = true;
|
||||
}
|
||||
reset();
|
||||
}
|
||||
|
||||
public void reset() {
|
||||
handler.removeCallbacksAndMessages(/* token= */ null);
|
||||
List<PlayerCommand> queue;
|
||||
@ -187,11 +173,6 @@ import java.util.concurrent.Callable;
|
||||
@CommandCode int commandCode, Callable<Boolean> command, @Nullable Object tag) {
|
||||
SettableFuture<PlayerResult> result = SettableFuture.create();
|
||||
synchronized (lock) {
|
||||
if (closed) {
|
||||
// OK to set result with lock hold because developers cannot add listener here.
|
||||
result.set(new PlayerResult(PlayerResult.RESULT_ERROR_INVALID_STATE, /* item= */ null));
|
||||
return result;
|
||||
}
|
||||
PlayerCommand playerCommand = new PlayerCommand(commandCode, command, result, tag);
|
||||
result.addListener(
|
||||
() -> {
|
||||
|
Loading…
x
Reference in New Issue
Block a user