aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Drawing/IImageProcessor.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-04-23 12:50:54 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-04-23 12:50:54 -0400
commit6f016525208f665502d844d151c31e9ff38fd20a (patch)
treed9c5905af8a4684b13eb6eb00584bfbb66a4e1fc /MediaBrowser.Controller/Drawing/IImageProcessor.cs
parent7ac8fd1c68ec9b58d17180b50a2555dd469ba535 (diff)
control the number of simultaneous image operations
Diffstat (limited to 'MediaBrowser.Controller/Drawing/IImageProcessor.cs')
-rw-r--r--MediaBrowser.Controller/Drawing/IImageProcessor.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Drawing/IImageProcessor.cs b/MediaBrowser.Controller/Drawing/IImageProcessor.cs
index 685d2706d..aeb817392 100644
--- a/MediaBrowser.Controller/Drawing/IImageProcessor.cs
+++ b/MediaBrowser.Controller/Drawing/IImageProcessor.cs
@@ -104,6 +104,6 @@ namespace MediaBrowser.Controller.Drawing
/// Creates the image collage.
/// </summary>
/// <param name="options">The options.</param>
- void CreateImageCollage(ImageCollageOptions options);
+ Task CreateImageCollage(ImageCollageOptions options);
}
}