How do you implement this use case?

A medium-size toymaker wants to fulfill orders received during the peak season in December and process the orders in batches multiple times a day.

How do you implement this use case?
A . Create one scheduled job and set its run schedule to multiple times a day.
B . Create scheduled jobs, one for each run, that can process accumulated orders.
C . Create batches of orders and send each batch for processing when it gets full.
D . Create a queue processor that can process orders received by the company.

Answer: D

Explanation:

To fulfill orders received during the peak season in December and process the orders in batches multiple times a day, you would create a queue processor that can process orders received by the company. Queue processors are designed to handle asynchronous, high-volume processing, which is suitable for the described use case.

Reference: Pega official documentation on queue processors.

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments