diff --git a/all/com/djrapitops/plan/commands/subcommands/PluginStatusCommands.html b/all/com/djrapitops/plan/commands/subcommands/PluginStatusCommands.html index afabd7c6f..f82511005 100644 --- a/all/com/djrapitops/plan/commands/subcommands/PluginStatusCommands.html +++ b/all/com/djrapitops/plan/commands/subcommands/PluginStatusCommands.html @@ -90,9 +90,10 @@ loadScripts(document, 'script');
Constructor
Description
-
PluginStatusCommands(PlanPlugin plugin, +
PluginStatusCommands(PlanPlugin plugin, net.playeranalytics.plugin.PluginInformation pluginInformation, Locale locale, + ServerInfo serverInfo, DBSystem dbSystem, Status status, VersionChecker versionChecker, @@ -140,12 +141,13 @@ loadScripts(document, 'script');

Constructor Details

@@ -715,6 +717,12 @@ the order they are declared.
  • +
    +

    INFO_SERVER_UUID

    +
    public static final CommandLang INFO_SERVER_UUID
    +
    +
  • +
  • INGAME_ACTIVITY_INDEX

    public static final CommandLang INGAME_ACTIVITY_INDEX
    diff --git a/all/com/djrapitops/plan/storage/database/queries/objects/TPSQueries.html b/all/com/djrapitops/plan/storage/database/queries/objects/TPSQueries.html index 9d3c92ed8..6cbc873bd 100644 --- a/all/com/djrapitops/plan/storage/database/queries/objects/TPSQueries.html +++ b/all/com/djrapitops/plan/storage/database/queries/objects/TPSQueries.html @@ -130,55 +130,58 @@ loadScripts(document, 'script');
     
    -
    fetchLatestServerStartTime(ServerUUID serverUUID, + +
     
    + +
    fetchLatestServerStartTime(ServerUUID serverUUID, long dataGapThreshold)
    -
     
    -
    static Query<Optional<TPS>>
    -
     
    - -
    fetchPeakPlayerCount(ServerUUID serverUUID, +
    static Query<Optional<TPS>>
    + +
     
    + +
    fetchPeakPlayerCount(ServerUUID serverUUID, long afterDate)
    -
     
    - -
    fetchPlayersOnlineOfServer(long after, - long before, - ServerUUID serverUUID)
     
    - -
    fetchTPSDataOfAllServersBut(long after, + +
    fetchPlayersOnlineOfServer(long after, long before, - ServerUUID leaveOut)
    -
     
    -
    static Query<List<TPS>>
    -
    fetchTPSDataOfServer(long after, - long before, - ServerUUID serverUUID)
    -
     
    -
    static Query<List<TPS>>
    -
    fetchTPSDataOfServerInResolution(long after, - long before, - long resolution, ServerUUID serverUUID)
     
    -
    fetchTPSDataOfServers(long after, +
    fetchTPSDataOfAllServersBut(long after, + long before, + ServerUUID leaveOut)
    +
     
    +
    static Query<List<TPS>>
    +
    fetchTPSDataOfServer(long after, + long before, + ServerUUID serverUUID)
    +
     
    +
    static Query<List<TPS>>
    +
    fetchTPSDataOfServerInResolution(long after, + long before, + long resolution, + ServerUUID serverUUID)
    +
     
    + +
    fetchTPSDataOfServers(long after, long before, Collection<ServerUUID> serverUUIDs)
    -
     
    - -
     
    -
    static Query<Long>
    -
    maxFreeDisk(long after, - long before, - ServerUUID serverUUID)
    + +
     
    static Query<Long>
    -
    minFreeDisk(long after, +
    maxFreeDisk(long after, long before, ServerUUID serverUUID)
     
    +
    static Query<Long>
    +
    minFreeDisk(long after, + long before, + ServerUUID serverUUID)
    +
     
    @@ -330,6 +333,12 @@ loadScripts(document, 'script');
  • +
    +

    fetchLastStoredTpsDate

    +
    public static Query<Optional<Long>> fetchLastStoredTpsDate(ServerUUID serverUUID)
    +
    +
  • +
  • fetchTPSDataOfServers

    public static Query<Map<Integer,List<TPS>>> fetchTPSDataOfServers(long after, diff --git a/all/com/djrapitops/plan/storage/database/transactions/events/TPSStoreTransaction.html b/all/com/djrapitops/plan/storage/database/transactions/events/TPSStoreTransaction.html index 10ebdf2a0..fb89e4841 100644 --- a/all/com/djrapitops/plan/storage/database/transactions/events/TPSStoreTransaction.html +++ b/all/com/djrapitops/plan/storage/database/transactions/events/TPSStoreTransaction.html @@ -104,6 +104,10 @@ loadScripts(document, 'script');
     
    +
    TPSStoreTransaction(net.playeranalytics.plugin.server.PluginLogger logger, + ServerUUID serverUUID, + TPS tps)
    +
     
  • @@ -112,7 +116,7 @@ loadScripts(document, 'script');

    Method Summary

    -
    +
    Modifier and Type
    @@ -123,6 +127,9 @@ loadScripts(document, 'script');
    Implement this method for transaction execution.
    +
    static void
    +
    setLastStorageCheck(long lastStorageCheck)
    +
     
    @@ -144,6 +151,14 @@ loadScripts(document, 'script');

    Constructor Details