mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 18:33:38 +01:00
8 lines
133 B
C#
8 lines
133 B
C#
namespace SharpCifs.Util.Sharpen
|
|
{
|
|
internal interface IFuture<T>
|
|
{
|
|
bool Cancel (bool mayInterruptIfRunning);
|
|
T Get ();
|
|
}
|
|
}
|