14 lines
342 B
C#
14 lines
342 B
C#
using System;
|
|
using System.IO;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LeanCloud.Realtime.Internal
|
|
{
|
|
interface IAVRouterController
|
|
{
|
|
Task<PushRouterState> GetAsync(string pushRouter, bool secure, CancellationToken cancellationToken = default(CancellationToken));
|
|
Task ClearCache();
|
|
}
|
|
}
|