Fixed memory counter not refreshing over time

This commit is contained in:
Kaoticz
2021-10-17 22:56:10 +00:00
committed by Kwoth
parent 24a4745193
commit 92365fd22d
3 changed files with 19 additions and 9 deletions

View File

@@ -14,11 +14,6 @@ namespace NadekoBot.Services
/// </summary>
long CommandsRan { get; }
/// <summary>
/// The total amount of private memory used by the bot, in Megabytes.
/// </summary>
double PrivateMemory { get; }
/// <summary>
/// The Discord framework used by the bot.
/// </summary>
@@ -54,5 +49,10 @@ namespace NadekoBot.Services
/// </summary>
/// <param name="separator">The formatting separator.</param>
string GetUptimeString(string separator = ", ");
/// <summary>
/// Gets total amount of private memory currently in use by the bot, in Megabytes.
/// </summary>
double GetPrivateMemory();
}
}