1 2 3 4 5 6 7 8 9 10
using System.Threading.Tasks; using MediaBrowser.Model.Net; namespace Emby.Server.Implementations.WebSockets { public interface IWebSocketHandler { Task ProcessMessage(WebSocketMessage<object> message, TaskCompletionSource<bool> taskCompletionSource); } }