modified ProcessProcedureQueue to mark requests as queued and only re-queue them if they have been queued for over ten minutes

This commit is contained in:
Infineon\StieberD
2025-06-25 15:35:54 -07:00
parent 38e7b6e276
commit c6910c14c2
5 changed files with 69 additions and 51 deletions

View File

@ -0,0 +1,19 @@
compile insert PROC_QUEUE2_EQUATES
/*----------------------------------------
Author : Table Create Insert Routine
Written : 25/06/2025
Description : Insert for Table PROC_QUEUE2
----------------------------------------*/
#ifndef __PROC_QUEUE2_EQUATES__
#define __PROC_QUEUE2_EQUATES__
equ PROC_QUEUE2.PROC_NAME$ to 1
equ PROC_QUEUE2.PARAMS$ to 2
equ PROC_QUEUE2.LAST_ATTEMPT_DTM$ to 3
equ PROC_QUEUE2.ERROR$ to 4
equ PROC_QUEUE2.ENTRY_DTM$ to 5
equ PROC_QUEUE2.NUM_ATTEMPTS$ to 6
equ PROC_QUEUE2.IN_QUEUE$ to 7
equ PROC_QUEUE2.QUEUED_DTM$ to 8
#endif