C# Class FSO.Client.Network.Cache

Cache for storing characters received by the login server.
Show file Open project: RHY3756547/FreeSO

Public Methods

Method Description
CacheSims ( List FreshSims ) : void

Caches sims received from the LoginServer to the disk.

DeleteCache ( ) : void
GetDateCached ( ) : string

Gets the last time sims were cached from the cache.

LoadAllSims ( ) : List

Loads all sims from the player's cache.

LoadCachedSims ( List ReceivedSims ) : List

Loads sims that weren't received by the login server.

Method Details

CacheSims() public static method

Caches sims received from the LoginServer to the disk.
public static CacheSims ( List FreshSims ) : void
FreshSims List A list of the sims received by the LoginServer.
return void

DeleteCache() public static method

public static DeleteCache ( ) : void
return void

GetDateCached() public static method

Gets the last time sims were cached from the cache.
public static GetDateCached ( ) : string
return string

LoadAllSims() public static method

Loads all sims from the player's cache.
public static LoadAllSims ( ) : List
return List

LoadCachedSims() public static method

Loads sims that weren't received by the login server.
public static LoadCachedSims ( List ReceivedSims ) : List
ReceivedSims List Sims that were received by the login server.
return List