jellyfin/Emby.Server.Implementations/Sorting/RuntimeComparer.cs

41 lines
1.0 KiB
C#
Raw Normal View History

using System;
using MediaBrowser.Controller.Entities;
2013-03-09 23:22:36 -05:00
using MediaBrowser.Controller.Sorting;
2013-03-10 00:36:39 -05:00
using MediaBrowser.Model.Querying;
2013-03-09 23:22:36 -05:00
namespace Emby.Server.Implementations.Sorting
2013-03-09 23:22:36 -05:00
{
/// <summary>
/// Class RuntimeComparer.
2013-03-09 23:22:36 -05:00
/// </summary>
public class RuntimeComparer : IBaseItemComparer
{
/// <summary>
/// Compares the specified x.
/// </summary>
/// <param name="x">The x.</param>
/// <param name="y">The y.</param>
/// <returns>System.Int32.</returns>
public int Compare(BaseItem x, BaseItem y)
{
if (x == null)
2020-06-20 05:12:36 -04:00
{
throw new ArgumentNullException(nameof(x));
2020-06-20 05:12:36 -04:00
}
if (y == null)
2020-06-20 05:12:36 -04:00
{
throw new ArgumentNullException(nameof(y));
2020-06-20 05:12:36 -04:00
}
2013-03-09 23:22:36 -05:00
return (x.RunTimeTicks ?? 0).CompareTo(y.RunTimeTicks ?? 0);
}
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
public string Name => ItemSortBy.Runtime;
2013-03-09 23:22:36 -05:00
}
}