using System; using System.Collections.Generic; namespace Bootstrap.Admin { /// /// /// public interface IOnlineUsers { /// /// /// IEnumerable OnlineUsers { get; } /// /// /// /// /// /// /// OnlineUserCache AddOrUpdate(string key, Func addValueFactory, Func updateValueFactory); /// /// /// /// /// /// bool TryRemove(string key, out OnlineUserCache onlineUserCache); /// /// /// /// /// string RetrieveLocaleByIp(string ip = null); } }