using System;
using System.Collections.Generic;
using System.Text;
using Asterisk.NET.Manager.Action;
namespace Asterisk.NET.Manager
{
///
/// An Interface to handle responses received from an asterisk server.
///
///
public interface IResponseHandler
{
///
/// This method is called when a response is received.
///
/// the response received
void HandleResponse(Response.ManagerResponse response);
void Free();
ManagerAction Action
{
get;
}
int Hash
{
get;
set;
}
}
}