# HG changeset patch # User Sebastien Jodogne # Date 1763487465 -3600 # Node ID 97da5aa716a0879b1a713a46592f5b6f977d6510 # Parent ddfd3540acb237783b9fcba55175aefb9e414654 renaming supports_extended_queues as supports_reserve_queue_value diff -r ddfd3540acb2 -r 97da5aa716a0 Framework/Plugins/DatabaseBackendAdapterV4.cpp --- a/Framework/Plugins/DatabaseBackendAdapterV4.cpp Mon Oct 13 09:25:36 2025 +0200 +++ b/Framework/Plugins/DatabaseBackendAdapterV4.cpp Tue Nov 18 18:37:45 2025 +0100 @@ -465,7 +465,7 @@ #endif #if ORTHANC_PLUGINS_HAS_EXTENDED_QUEUES == 1 - response.mutable_get_system_information()->set_supports_extended_queues(accessor.GetBackend().HasExtendedQueues()); + response.mutable_get_system_information()->set_supports_reserve_queue_value(accessor.GetBackend().HasReserveQueueValue()); #endif #if ORTHANC_PLUGINS_HAS_KEY_VALUE_STORES == 1 diff -r ddfd3540acb2 -r 97da5aa716a0 Framework/Plugins/IDatabaseBackend.h --- a/Framework/Plugins/IDatabaseBackend.h Mon Oct 13 09:25:36 2025 +0200 +++ b/Framework/Plugins/IDatabaseBackend.h Tue Nov 18 18:37:45 2025 +0100 @@ -139,7 +139,7 @@ virtual bool HasQueues() const = 0; - virtual bool HasExtendedQueues() const = 0; + virtual bool HasReserveQueueValue() const = 0; virtual bool HasAuditLogs() const = 0; diff -r ddfd3540acb2 -r 97da5aa716a0 MySQL/Plugins/MySQLIndex.h --- a/MySQL/Plugins/MySQLIndex.h Mon Oct 13 09:25:36 2025 +0200 +++ b/MySQL/Plugins/MySQLIndex.h Tue Nov 18 18:37:45 2025 +0100 @@ -76,7 +76,7 @@ return false; } - virtual bool HasExtendedQueues() const ORTHANC_OVERRIDE + virtual bool HasReserveQueueValue() const ORTHANC_OVERRIDE { return false; } diff -r ddfd3540acb2 -r 97da5aa716a0 Odbc/Plugins/OdbcIndex.h --- a/Odbc/Plugins/OdbcIndex.h Mon Oct 13 09:25:36 2025 +0200 +++ b/Odbc/Plugins/OdbcIndex.h Tue Nov 18 18:37:45 2025 +0100 @@ -88,7 +88,7 @@ return false; } - virtual bool HasExtendedQueues() const ORTHANC_OVERRIDE + virtual bool HasReserveQueueValue() const ORTHANC_OVERRIDE { return false; } diff -r ddfd3540acb2 -r 97da5aa716a0 PostgreSQL/Plugins/PostgreSQLIndex.h --- a/PostgreSQL/Plugins/PostgreSQLIndex.h Mon Oct 13 09:25:36 2025 +0200 +++ b/PostgreSQL/Plugins/PostgreSQLIndex.h Tue Nov 18 18:37:45 2025 +0100 @@ -87,7 +87,7 @@ return true; } - virtual bool HasExtendedQueues() const ORTHANC_OVERRIDE + virtual bool HasReserveQueueValue() const ORTHANC_OVERRIDE { return true; } diff -r ddfd3540acb2 -r 97da5aa716a0 SQLite/Plugins/SQLiteIndex.h --- a/SQLite/Plugins/SQLiteIndex.h Mon Oct 13 09:25:36 2025 +0200 +++ b/SQLite/Plugins/SQLiteIndex.h Tue Nov 18 18:37:45 2025 +0100 @@ -70,7 +70,7 @@ return true; } - virtual bool HasExtendedQueues() const ORTHANC_OVERRIDE + virtual bool HasReserveQueueValue() const ORTHANC_OVERRIDE { return false; }