2014-05-21 01:15:46 +00:00
|
|
|
|
|
2014-04-21 16:02:30 +00: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>
|
|
|
|
|
/// <param name="subscriptionId">The subscription identifier.</param>
|
|
|
|
|
/// <param name="timeoutSeconds">The timeout seconds.</param>
|
|
|
|
|
/// <returns>EventSubscriptionResponse.</returns>
|
|
|
|
|
EventSubscriptionResponse RenewEventSubscription(string subscriptionId, int? timeoutSeconds);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates the event subscription.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="notificationType">Type of the notification.</param>
|
|
|
|
|
/// <param name="timeoutSeconds">The timeout seconds.</param>
|
|
|
|
|
/// <param name="callbackUrl">The callback URL.</param>
|
|
|
|
|
/// <returns>EventSubscriptionResponse.</returns>
|
|
|
|
|
EventSubscriptionResponse CreateEventSubscription(string notificationType, int? timeoutSeconds, string callbackUrl);
|
|
|
|
|
}
|
|
|
|
|
}
|