jellyfin/MediaBrowser.Controller/Dlna/IEventManager.cs

23 lines
814 B
C#
Raw Normal View History

2014-05-21 03:15:46 +02:00

2014-04-21 18:02:30 +02:00
namespace MediaBrowser.Controller.Dlna
{
public interface IEventManager
{
/// <summary>
/// Cancels the event subscription.
/// </summary>
/// <param name="subscriptionId">The subscription identifier.</param>
EventSubscriptionResponse CancelEventSubscription(string subscriptionId);
/// <summary>
/// Renews the event subscription.
/// </summary>
2017-10-04 20:51:26 +02:00
EventSubscriptionResponse RenewEventSubscription(string subscriptionId, string notificationType, string requestedTimeoutString, string callbackUrl);
2014-04-21 18:02:30 +02:00
/// <summary>
/// Creates the event subscription.
/// </summary>
2017-07-20 22:37:13 +02:00
EventSubscriptionResponse CreateEventSubscription(string notificationType, string requestedTimeoutString, string callbackUrl);
2014-04-21 18:02:30 +02:00
}
}