using System; using System.IO; using System.Threading; using System.Threading.Tasks; namespace LeanCloud.Realtime.Internal { interface IAVRouterController { Task GetAsync(string pushRouter, bool secure, CancellationToken cancellationToken = default(CancellationToken)); Task ClearCache(); } }