workqueues_BP

madhuriv

New Member
could you please tell me correct sollution for this below scenario.. we have 3 processes process1 and process2 sends records to same workqueue and process 3 wants to process records of process 1 only how..?
 

joshwgray

New Member
If 'process 1' and 'process 2' tag the items that are being added to the work queue appropriately, then 'process 3' can get the items from the queue using the appropriate tag filter. By doing this, only the items for 'process 1' will be processed.
 
Top