using System.Threading.Tasks;
namespace Microsoft.AspNetCore.SignalR
{
public interface IClientProxy
{
///
/// Invokes a method on the connection(s) represented by the instance.
///
/// name of the method to invoke
/// argumetns to pass to the client
/// A task that represents when the data has been sent to the client.
Task InvokeAsync(string method, params object[] args);
}
}