/* * Copyright (C) 2022 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package androidx.window.util; import android.annotation.NonNull; import java.util.function.Consumer; /** * A base class that works with {@link BaseDataProducer} to add/remove a consumer that should * only be used once when {@link BaseDataProducer#notifyDataChanged} is called. * @param The type of data this producer returns through {@link DataProducer#getData}. */ public class AcceptOnceConsumer implements Consumer { private final Consumer mCallback; private final AcceptOnceProducerCallback mProducer; public AcceptOnceConsumer(@NonNull AcceptOnceProducerCallback producer, @NonNull Consumer callback) { mProducer = producer; mCallback = callback; } @Override public void accept(@NonNull T t) { mCallback.accept(t); mProducer.onConsumerReadyToBeRemoved(this); } /** * Interface to allow the {@link AcceptOnceConsumer} to notify the client that created it, * when it is ready to be removed. This allows the client to remove the consumer object * when it deems it is safe to do so. * @param The type of data this callback accepts through {@link #onConsumerReadyToBeRemoved} */ public interface AcceptOnceProducerCallback { /** * Notifies that the given {@code callback} is ready to be removed */ void onConsumerReadyToBeRemoved(Consumer callback); } }