jellyfin/Emby.Server.Implementations/IO/SharpCifs/Util/Sharpen/IFuture.cs

9 lines
133 B
C#
Raw Normal View History

2017-04-02 00:36:06 +00:00
namespace SharpCifs.Util.Sharpen
{
internal interface IFuture<T>
2017-07-08 03:12:21 +00:00
{
bool Cancel (bool mayInterruptIfRunning);
T Get ();
}
2017-04-02 00:36:06 +00:00
}