I am learning rest with spring mvc/boot. I understand basic rest calls but i am having trouble understanding long running/non-blocking rest calls.
I understand that with long running rest calls we start a separate thread and the server returns a DeferredResult object to client but how does a client is notified when the processing thread is completed ?
Can someone provide me an example on how to handle this at clients end ?
Also how the non-java clients can handle such request ?
I am giving this answer related to Spring and not related to any non-java clients.
There is AsyncRestTemplate that can be utilized for retrieving from long running Rest Webservice
http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/client/AsyncRestTemplate.html
//WAY1
}
//WAY2
}