aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/ClientEvent/IClientEventLogger.cs
blob: 34968d493eb2541664a14276f14f9a6c229aa471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System.IO;
using System.Threading.Tasks;
using MediaBrowser.Controller.Net;
using MediaBrowser.Model.ClientLog;

namespace MediaBrowser.Controller.ClientEvent
{
    /// <summary>
    /// The client event logger.
    /// </summary>
    public interface IClientEventLogger
    {
        /// <summary>
        /// Logs the event from the client.
        /// </summary>
        /// <param name="clientLogEvent">The client log event.</param>
        void Log(ClientLogEvent clientLogEvent);

        /// <summary>
        /// Writes a file to the log directory.
        /// </summary>
        /// <param name="clientName">The client name writing the document.</param>
        /// <param name="clientVersion">The client version writing the document.</param>
        /// <param name="fileContents">The file contents to write.</param>
        /// <returns>The created file name.</returns>
        Task<string> WriteDocumentAsync(
            string clientName,
            string clientVersion,
            Stream fileContents);
    }
}