blob: 79fb4f0597d6e20e8168d36828a16af31be82de4 [file] [log] [blame]
package com.gemstone.gemfire.internal.offheap;
/**
* Instances that implement this interface must have release called on them
* before the instance becomes garbage.
*
* @author darrel
* @since 9.0
*/
public interface Releasable {
/**
* Release any off-heap data owned by this instance.
*/
public void release();
}