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

9 lines
133 B
C#
Raw Normal View History

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