using System; using System.Threading; using System.Threading.Tasks; namespace LeanCloud.Storage.Internal { public interface IAVCurrentUserController : IAVObjectCurrentController { Task GetCurrentSessionTokenAsync(CancellationToken cancellationToken); Task LogOutAsync(CancellationToken cancellationToken); } }