/* * Copyright (C) 2014 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 com.android.camera.async; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; /** * Enables handling the shut-down of components in a structured way. *
* Lifetimes are nestable sets of {@link SafeCloseable}s useful for guaranteeing * that resources, such as threads, files, hardware devices, etc., are properly * closed when necessary. *
* Child lifetimes are closed when their parent is closed, or when they are * closed directly, whichever comes first. Objects added to a particular * lifetime will only ever be closed once by that lifetime. *
*/ public class Lifetime implements SafeCloseable { /** * The parent, or null if there is no parent lifetime. */ private final Lifetime mParent; private final Object mLock; private final Set