mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 16:54:46 +03:00
rework scheduled tasks in preparation of common project going portable
This commit is contained in:
11
MediaBrowser.Model/IO/IMemoryStreamProvider.cs
Normal file
11
MediaBrowser.Model/IO/IMemoryStreamProvider.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System.IO;
|
||||
|
||||
namespace MediaBrowser.Model.IO
|
||||
{
|
||||
public interface IMemoryStreamProvider
|
||||
{
|
||||
MemoryStream CreateNew();
|
||||
MemoryStream CreateNew(int capacity);
|
||||
MemoryStream CreateNew(byte[] buffer);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user