1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00
Files
Radarr/src/Microsoft.AspNet.SignalR.Core/Transports/ITransport.cs
T
2014-12-06 21:55:17 -08:00

58 lines
2.1 KiB
C#

// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.md in the project root for license information.
using System;
using System.Threading.Tasks;
namespace Microsoft.AspNet.SignalR.Transports
{
/// <summary>
/// Represents a transport that communicates
/// </summary>
public interface ITransport
{
/// <summary>
/// Gets or sets a callback that is invoked when the transport receives data.
/// </summary>
Func<string, Task> Received { get; set; }
/// <summary>
/// Gets or sets a callback that is invoked when the initial connection connects to the transport.
/// </summary>
Func<Task> Connected { get; set; }
/// <summary>
/// Gets or sets a callback that is invoked when the transport connects.
/// </summary>
Func<Task> TransportConnected { get; set; }
/// <summary>
/// Gets or sets a callback that is invoked when the transport reconnects.
/// </summary>
Func<Task> Reconnected { get; set; }
/// <summary>
/// Gets or sets a callback that is invoked when the transport disconnects.
/// </summary>
Func<Task> Disconnected { get; set; }
/// <summary>
/// Gets or sets the connection id for the transport.
/// </summary>
string ConnectionId { get; set; }
/// <summary>
/// Processes the specified <see cref="ITransportConnection"/> for this transport.
/// </summary>
/// <param name="connection">The <see cref="ITransportConnection"/> to process.</param>
/// <returns>A <see cref="Task"/> that completes when the transport has finished processing the connection.</returns>
Task ProcessRequest(ITransportConnection connection);
/// <summary>
/// Sends data over the transport.
/// </summary>
/// <param name="value">The value to be sent.</param>
/// <returns>A <see cref="Task"/> that completes when the send is complete.</returns>
Task Send(object value);
}
}