aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/ApiClient/IServerEvents.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/ApiClient/IServerEvents.cs')
-rw-r--r--MediaBrowser.Model/ApiClient/IServerEvents.cs152
1 files changed, 0 insertions, 152 deletions
diff --git a/MediaBrowser.Model/ApiClient/IServerEvents.cs b/MediaBrowser.Model/ApiClient/IServerEvents.cs
deleted file mode 100644
index ae2d5d323..000000000
--- a/MediaBrowser.Model/ApiClient/IServerEvents.cs
+++ /dev/null
@@ -1,152 +0,0 @@
-using MediaBrowser.Model.Dto;
-using MediaBrowser.Model.Entities;
-using MediaBrowser.Model.Events;
-using MediaBrowser.Model.Plugins;
-using MediaBrowser.Model.Session;
-using MediaBrowser.Model.Sync;
-using MediaBrowser.Model.Tasks;
-using MediaBrowser.Model.Updates;
-using System;
-using System.Collections.Generic;
-
-namespace MediaBrowser.Model.ApiClient
-{
- /// <summary>
- /// Interface IServerEvents
- /// </summary>
- public interface IServerEvents
- {
- /// <summary>
- /// Occurs when [user deleted].
- /// </summary>
- event EventHandler<GenericEventArgs<string>> UserDeleted;
- /// <summary>
- /// Occurs when [scheduled task ended].
- /// </summary>
- event EventHandler<GenericEventArgs<TaskResult>> ScheduledTaskEnded;
- /// <summary>
- /// Occurs when [package installing].
- /// </summary>
- event EventHandler<GenericEventArgs<InstallationInfo>> PackageInstalling;
- /// <summary>
- /// Occurs when [package installation failed].
- /// </summary>
- event EventHandler<GenericEventArgs<InstallationInfo>> PackageInstallationFailed;
- /// <summary>
- /// Occurs when [package installation completed].
- /// </summary>
- event EventHandler<GenericEventArgs<InstallationInfo>> PackageInstallationCompleted;
- /// <summary>
- /// Occurs when [package installation cancelled].
- /// </summary>
- event EventHandler<GenericEventArgs<InstallationInfo>> PackageInstallationCancelled;
- /// <summary>
- /// Occurs when [user updated].
- /// </summary>
- event EventHandler<GenericEventArgs<UserDto>> UserUpdated;
- /// <summary>
- /// Occurs when [plugin uninstalled].
- /// </summary>
- event EventHandler<GenericEventArgs<PluginInfo>> PluginUninstalled;
- /// <summary>
- /// Occurs when [library changed].
- /// </summary>
- event EventHandler<GenericEventArgs<LibraryUpdateInfo>> LibraryChanged;
- /// <summary>
- /// Occurs when [browse command].
- /// </summary>
- event EventHandler<GenericEventArgs<BrowseRequest>> BrowseCommand;
- /// <summary>
- /// Occurs when [play command].
- /// </summary>
- event EventHandler<GenericEventArgs<PlayRequest>> PlayCommand;
- /// <summary>
- /// Occurs when [playstate command].
- /// </summary>
- event EventHandler<GenericEventArgs<PlaystateRequest>> PlaystateCommand;
- /// <summary>
- /// Occurs when [message command].
- /// </summary>
- event EventHandler<GenericEventArgs<MessageCommand>> MessageCommand;
- /// <summary>
- /// Occurs when [system command].
- /// </summary>
- event EventHandler<GenericEventArgs<GeneralCommandEventArgs>> GeneralCommand;
- /// <summary>
- /// Occurs when [notification added].
- /// </summary>
- event EventHandler<EventArgs> NotificationAdded;
- /// <summary>
- /// Occurs when [notification updated].
- /// </summary>
- event EventHandler<EventArgs> NotificationUpdated;
- /// <summary>
- /// Occurs when [notifications marked read].
- /// </summary>
- event EventHandler<EventArgs> NotificationsMarkedRead;
- /// <summary>
- /// Occurs when [server restarting].
- /// </summary>
- event EventHandler<EventArgs> ServerRestarting;
- /// <summary>
- /// Occurs when [server shutting down].
- /// </summary>
- event EventHandler<EventArgs> ServerShuttingDown;
- /// <summary>
- /// Occurs when [send text command].
- /// </summary>
- event EventHandler<GenericEventArgs<string>> SendStringCommand;
- /// <summary>
- /// Occurs when [set volume command].
- /// </summary>
- event EventHandler<GenericEventArgs<int>> SetVolumeCommand;
- /// <summary>
- /// Occurs when [set audio stream index command].
- /// </summary>
- event EventHandler<GenericEventArgs<int>> SetAudioStreamIndexCommand;
- /// <summary>
- /// Occurs when [set video stream index command].
- /// </summary>
- event EventHandler<GenericEventArgs<int>> SetSubtitleStreamIndexCommand;
- /// <summary>
- /// Occurs when [sessions updated].
- /// </summary>
- event EventHandler<GenericEventArgs<SessionUpdatesEventArgs>> SessionsUpdated;
- /// <summary>
- /// Occurs when [restart required].
- /// </summary>
- event EventHandler<EventArgs> RestartRequired;
- /// <summary>
- /// Occurs when [user data changed].
- /// </summary>
- event EventHandler<GenericEventArgs<UserDataChangeInfo>> UserDataChanged;
- /// <summary>
- /// Occurs when [playback start].
- /// </summary>
- event EventHandler<GenericEventArgs<SessionInfoDto>> PlaybackStart;
- /// <summary>
- /// Occurs when [playback stopped].
- /// </summary>
- event EventHandler<GenericEventArgs<SessionInfoDto>> PlaybackStopped;
- /// <summary>
- /// Occurs when [session ended].
- /// </summary>
- event EventHandler<GenericEventArgs<SessionInfoDto>> SessionEnded;
- /// <summary>
- /// Occurs when [synchronize job created].
- /// </summary>
- event EventHandler<GenericEventArgs<SyncJobCreationResult>> SyncJobCreated;
- /// <summary>
- /// Occurs when [synchronize job cancelled].
- /// </summary>
- event EventHandler<GenericEventArgs<SyncJob>> SyncJobCancelled;
- /// <summary>
- /// Occurs when [synchronize jobs updated].
- /// </summary>
- event EventHandler<GenericEventArgs<List<SyncJob>>> SyncJobsUpdated;
- /// <summary>
- /// Occurs when [synchronize job updated].
- /// </summary>
- event EventHandler<GenericEventArgs<CompleteSyncJobInfo>> SyncJobUpdated;
- }
-}