namespace Dalamud.Utility;
///
/// An extension of which makes queue
/// to be called at a later time.
///
internal interface IDeferredDisposable : IDisposable
{
/// Actually dispose the object.
/// Not to be called from the code that uses the end object.
void RealDispose();
}