java - Blocking in Netty 4 -
is there way run code in blocking mode in netty 4 client? can't find issue or example of how can run code in blocking mode. problem creating user login system , must success or error server rigth away after request , dependency of response work in client side. don't believe such powerful tool can't it
p.s. sorry english
you don't need blocking netty, need send data netty client in netty way, waits on settablefuture object set in netty inbound handler. it's program blocking, not netty's.
Comments
Post a Comment