aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/main/java/com/yahoo/jdisc/refcount/DestructableResource.java
blob: b373473f21494d385972bef0434fdbb6854db404 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.refcount;

public interface DestructableResource extends AutoCloseable {

    /**
     * Wrapper to allow access to protected AbstractResource.destroy()
     */
    @Override
    void close();
}