What is thread in Pega?

Hi,

I am reading this documentation article Unit testing a decision table | Pega in this article point number 3

" In the Data Context list, click the thread in which you want to run the rule."

What is this thread in pega? Can anyone explain thread in pega with example.

@AbhishekC1725 Thread is a wider term in java and pega ( you can refer google for the same).

To make it simple with respect to your unit test rule, whenever you open a case in pega, it opens the same in a new thread. If you have 3 cases open, the Data Context will show those 3 case ids, along with standard threads.

For your Test rule, you can open any case in pega and select that case when you run the Decision Table rule in data context so that your test case will use the clipboard values of that case.

@PIYUSHSINHA Thread concept is similar to what we use in java right?

@AbhishekC1725 yes

@PIYUSHSINHA OK Thanks for your prompt response.