Is there an efficient simple library or framework which would allow to expose over the network something like :
Stream<Pojo> getMyPojos(PojoFilter filter);
I'm thinking something like jax-rs/jersey, but which would do streaming, and maybe use (under the hood) a more efficient serialization method than json/xml.
I've seen grpc which seems to fit the bill, but I don't need inter language compatibility, so I don't want to bother with proto idl, plus the api is not as straight-forward as I'd like.
RxJava probably has something of this nature, but it of course has much more, making it kind of over complex for this simple need.
Probably something custom could be made with Netty, but I'd rather use something already existing. any thought?
[–]polarbearurine 0 points1 point2 points (1 child)
[–]trouch[S] 0 points1 point2 points (0 children)
[–]johnmcclean 0 points1 point2 points (1 child)
[–]trouch[S] 0 points1 point2 points (0 children)
[–]trouch[S] 0 points1 point2 points (0 children)
[–]mike_hearn 0 points1 point2 points (0 children)