Alachisoft.NCache.Common.IDisposable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nc-common Show documentation
Show all versions of nc-common Show documentation
Internal package of Alachisoft.
/*
* 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;
}