Files
jellyfin/Emby.Common.Implementations/IO/SharpCifs/Util/Sharpen/IFuture.cs
Luke Pulverenti 0d10dfe471 update sharpcifs
2017-07-07 23:12:21 -04:00

9 lines
133 B
C#

namespace SharpCifs.Util.Sharpen
{
internal interface IFuture<T>
{
bool Cancel (bool mayInterruptIfRunning);
T Get ();
}
}