Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
This artifact provides a single jar that contains all classes required to use remote EJB and JMS, including
all dependencies. It is intended for use by those not using maven, maven users should just import the EJB and
JMS BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up
with different versions on classes on the class path).
/*
* Copyright (C) 2008 The Guava Authors
*
* 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.google.common.base.internal;
import java.lang.ref.PhantomReference;
import java.lang.ref.Reference;
import java.lang.ref.ReferenceQueue;
import java.lang.ref.WeakReference;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.annotation.CheckForNull;
/**
* Thread that finalizes referents. All references should implement {@code
* com.google.common.base.FinalizableReference}.
*
*
While this class is public, we consider it to be *internal* and not part of our published API.
* It is public so we can access it reflectively across class loaders in secure environments.
*
*
This class can't depend on other Guava code. If we were to load this class in the same class
* loader as the rest of Guava, this thread would keep an indirect strong reference to the class
* loader and prevent it from being garbage collected. This poses a problem for environments where
* you want to throw away the class loader. For example, dynamically reloading a web application or
* unloading an OSGi bundle.
*
*
{@code com.google.common.base.FinalizableReferenceQueue} loads this class in its own class
* loader. That way, this class doesn't prevent the main class loader from getting garbage
* collected, and this class can detect when the main class loader has been garbage collected and
* stop itself.
*/
// no @ElementTypesAreNonNullByDefault for the reasons discussed above
public class Finalizer implements Runnable {
private static final Logger logger = Logger.getLogger(Finalizer.class.getName());
/** Name of FinalizableReference.class. */
private static final String FINALIZABLE_REFERENCE = "com.google.common.base.FinalizableReference";
/**
* Starts the Finalizer thread. FinalizableReferenceQueue calls this method reflectively.
*
* @param finalizableReferenceClass FinalizableReference.class.
* @param queue a reference queue that the thread will poll.
* @param frqReference a phantom reference to the FinalizableReferenceQueue, which will be queued
* either when the FinalizableReferenceQueue is no longer referenced anywhere, or when its
* close() method is called.
*/
public static void startFinalizer(
Class> finalizableReferenceClass,
ReferenceQueue