How can I return an object or list after using Blocking.get()
method in Ratpack?
Blocking.get(()->
xRepository.findAvailable()).then(x->x.stream().findFirst().get());
Above line returns void - I want to be able to do something like below so that it returns the object in the then clause. I tried adding a return statement but doesn't work.
Object x = Blocking.get(()->
xRepository.findAvailable()).then(x->x.stream().findFirst().get());
You can use map to work with the value when it's available.
Ratpack's
Promise<T>
does not provide blocking operation likePromise.get()
that blocks current thread and returns a result. Instead you have to subscribe to the promise object. One of the methods you can use isPromise.then(Action<? super T> then)
which allows you to specify and action that will be triggered when given value is available. In above example we usectx.render()
as an action triggered when value from blocking operation is ready, but you can do other things as well.