Finagle Client Server Implementation Lean in Java Using Netty

Only went through the Finagle homepage http://twitter.github.com/finagle/. It says that we can write a java netty implementation with caution using Finagale. I tried to find examples for the same, but could not find it. All examples are given in scala. Can someone provide me with pointers to a Java implementation?

thanks

+4
source share
1 answer

I wrote one here: finagle-java-example , which demonstrates a lean-based Finagle server entry in Java using blocking and non-blocking calls.

+4
source

All Articles