1
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 to each 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 any alternative?
Thank you for your answer. I will try to be more specific. I import a list in excel by uploading Cpf(only cpfs)... to a list that consists of Cpf{number,eValido,name,dtNasc} (eValido=false,name="",Data=null) so this list is updated on my front. Done this has a start button. by 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 consulted and returned if it is valid, name and date of birth, return this partial result to the client and continue the execution of the rest of the loop let’s say so.. Thanks in advance