changeset 756:97da5aa716a0 pg-next-699

renaming supports_extended_queues as supports_reserve_queue_value
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 18 Nov 2025 18:37:45 +0100
parents ddfd3540acb2
children 85ad4463ec58
files Framework/Plugins/DatabaseBackendAdapterV4.cpp Framework/Plugins/IDatabaseBackend.h MySQL/Plugins/MySQLIndex.h Odbc/Plugins/OdbcIndex.h PostgreSQL/Plugins/PostgreSQLIndex.h SQLite/Plugins/SQLiteIndex.h
diffstat 6 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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;
 
--- 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;
     }
--- 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;
     }
--- 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;
     }
--- 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;
     }