@@ -45,6 +45,8 @@ class Consts
4545 const STATUS_NAME_COMPLETED_NOT_DONE = 'STATUS_COMPLETED_NOT_DONE ' ;
4646 const STATUS_NAME_WAITING_FOR_RETRY = 'STATUS_WAITING_FOR_RETRY ' ;
4747
48+ const STATUS_NAME_SENT_TO_QUEUE_FOR_EXECUTION = 'STATUS_SENT_TO_QUEUE_FOR_EXECUTION ' ;
49+
4850 const ORDER_BY_CREATED_ON = 'ts_created ' ;
4951 const ORDER_BY_PRIORITY = 'priority ' ;
5052
@@ -60,16 +62,17 @@ class Consts
6062 public static function getMap ()
6163 {
6264 return array (
63- self ::STATUS_NAME_PENDING => self ::STATUS_PENDING ,
64- self ::STATUS_NAME_MULTI_WORKING => self ::STATUS_MULTI_WORKING ,
65- self ::STATUS_NAME_WORKING => self ::STATUS_WORKING ,
66- self ::STATUS_NAME_BROKEN => self ::STATUS_BROKEN ,
67- self ::STATUS_NAME_RETRY_FAILED => self ::STATUS_RETRY_FAILED ,
68- self ::STATUS_NAME_DONE => self ::STATUS_DONE ,
69- self ::STATUS_NAME_COMPLETED_NOT_DONE => self ::STATUS_COMPLETED_NOT_DONE ,
70- self ::STATUS_NAME_WAITING_FOR_RETRY => self ::STATUS_WAITING_FOR_RETRY ,
71- self ::ORDER_BY_NAME_CREATED_ON => self ::ORDER_BY_CREATED_ON ,
72- self ::ORDER_BY_NAME_PRIORITY => self ::ORDER_BY_PRIORITY ,
65+ self ::STATUS_NAME_PENDING => self ::STATUS_PENDING ,
66+ self ::STATUS_NAME_MULTI_WORKING => self ::STATUS_MULTI_WORKING ,
67+ self ::STATUS_NAME_WORKING => self ::STATUS_WORKING ,
68+ self ::STATUS_NAME_BROKEN => self ::STATUS_BROKEN ,
69+ self ::STATUS_NAME_RETRY_FAILED => self ::STATUS_RETRY_FAILED ,
70+ self ::STATUS_NAME_DONE => self ::STATUS_DONE ,
71+ self ::STATUS_NAME_COMPLETED_NOT_DONE => self ::STATUS_COMPLETED_NOT_DONE ,
72+ self ::STATUS_NAME_WAITING_FOR_RETRY => self ::STATUS_WAITING_FOR_RETRY ,
73+ self ::STATUS_NAME_SENT_TO_QUEUE_FOR_EXECUTION => self ::STATUS_SENT_TO_QUEUE_FOR_EXECUTION ,
74+ self ::ORDER_BY_NAME_CREATED_ON => self ::ORDER_BY_CREATED_ON ,
75+ self ::ORDER_BY_NAME_PRIORITY => self ::ORDER_BY_PRIORITY ,
7376 );
7477 }
7578
0 commit comments