If I make a Request for my bean and this bean will make a query in a list. A list of cpf for example.
Can I update the client of this request with every result of this loop made in the bean? I ask this because often this list can be extensive and the customer will have to wait.
Would anyone have an alternative?
Thank you for your response. I'll try to be more specific. I want to create a list in excel by uploading cpf (only cpfs) ... to a list that is formed by cpf {number, evalue, name, dtNasc} (evalue = false, name="", Date = null) list is updated on my front. Done this has a start button. when calling the method in the bean many times because this list of cpf is very large, I only get the result (visualization) at the end of the execution of this method. I would like that during this loop when each cpf was queried and returned if it is valid, name and date of birth, return this partial result in the client and continue the execution of the rest of the loop let's say so .. Thank you in advance