mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 05:57:20 -04:00
Updated IApiClient with default CancellationToken
This commit is contained in:
parent
fc115a0c2b
commit
b1377f9b00
1 changed files with 3 additions and 3 deletions
|
@ -1318,7 +1318,7 @@ namespace MediaBrowser.Model.ApiClient
|
|||
/// <param name="cancellationToken">The cancellation token.</param>
|
||||
/// <returns>Task.</returns>
|
||||
Task SendContextMessageAsync(string itemType, string itemId, string itemName, string context,
|
||||
CancellationToken cancellationToken);
|
||||
CancellationToken cancellationToken = default(CancellationToken));
|
||||
|
||||
/// <summary>
|
||||
/// Gets the content upload history.
|
||||
|
@ -1336,7 +1336,7 @@ namespace MediaBrowser.Model.ApiClient
|
|||
/// <returns>Task.</returns>
|
||||
Task UploadFile(Stream stream,
|
||||
LocalFileInfo file,
|
||||
CancellationToken cancellationToken);
|
||||
CancellationToken cancellationToken = default(CancellationToken));
|
||||
|
||||
/// <summary>
|
||||
/// Gets the devices options options.
|
||||
|
@ -1392,7 +1392,7 @@ namespace MediaBrowser.Model.ApiClient
|
|||
/// <param name="id">The identifier.</param>
|
||||
/// <param name="cancellationToken">The cancellation token.</param>
|
||||
/// <returns>Task<Stream>.</returns>
|
||||
Task<Stream> GetSyncJobItemFile(string id, CancellationToken cancellationToken);
|
||||
Task<Stream> GetSyncJobItemFile(string id, CancellationToken cancellationToken = default(CancellationToken));
|
||||
|
||||
/// <summary>
|
||||
/// Gets the synchronize job item additional file.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue