Files
jellyfin/Emby.Common.Implementations/IO/SharpCifs/Util/Sharpen/IFuture.cs
Luke Pulverenti 71eb9f143f update sharpcifs
2017-07-08 03:25:24 -04:00

9 lines
133 B
C#

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