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

Alachisoft.NCache.Common.IDisposable Maven / Gradle / Ivy

There is a newer version: 5.3.3
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package Alachisoft.NCache.Common;

/**
 * Basit: Dispose should not/never throw any exception since it is called by the code knowingly and dispose should handle everything in context
 * of its own if any exception arrives rather than to throw it up.
 *
 * @author muhammad_mansoor
 */
public interface IDisposable {
    public void dispose(); // throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy