All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.jdisc.References Maven / Gradle / Ivy

There is a newer version: 8.410.10
Show newest version
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc;

/**
 * Utility class for working with {@link SharedResource}s and {@link ResourceReference}s.
 *
 * @author bakksjo
 */
public class References {
    // Prevents instantiation.
    private References() {
    }

    /**
     * A {@link ResourceReference} that does nothing.
     * Useful for e.g. testing of resource types when reference counting is not the focus.
     */
    public static final ResourceReference NOOP_REFERENCE = new ResourceReference() {
        @Override
        public void close() {
        }
    };

    /**
     * 

Returns a {@link ResourceReference} that invokes {@link SharedResource#release()} on * {@link ResourceReference#close() close}. Useful for treating the "main" reference of a {@link SharedResource} * just as any other reference obtained by calling {@link SharedResource#refer()}. Example:

*
     *     final Request request = new Request(...);
     *     try (final ResourceReference ref = References.fromResource(request)) {
     *         ....
     *     }
     *     // The request will be released on exit from the try block.
     * 
* * @param resource The resource to create a ResourceReference for. * @return a ResourceReference whose close() method will call release() on the given resource. */ public static ResourceReference fromResource(final SharedResource resource) { return new ResourceReference() { @Override public void close() { resource.release(); } }; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy