Which describes a trigger that causes a call to an AsyncListener?
A.
Completion of processing
B.
Receipt of a new request from the same client
C.
Addition of a new filter to the processing stream for this request
D.
Completion of each timer interval
A
It should be answer : B
B
Answer A,because the four events that can be triggered in an AsyncListener are :
onStartAsync, onComplete, onTimeout, onError.
The answer A corresponds to the onComplete event.