using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Transport
{
///
/// Represents a pending response waiting to be returned to the request sender.
///
public class PendingResponse
{
///
/// Gets or sets a value indicating whether this is a continuous request.
///
public bool IsContinuous { get; set; }
///
/// Initializes a new instance of the class.
///
/// The adapter.
/// if set to true [is continuous].
public PendingResponse(bool isContinuous)
{
IsContinuous = isContinuous;
}
}
}