pjklauser / protobuf-rpc-pro

A java implementation for Google's Protocol Buffer RPC services.
113 stars 45 forks source link

Using Websockets #41

Open dtracers opened 9 years ago

dtracers commented 9 years ago

I was wondering if this uses Websockets underneath or if it can be changed to use websockets (as an option).

The reason being is that I would like to use it to communicate with a browser using RPC but I would like to use websockets for their low latency.

(Sorry for all of the questions!)

pjklauser commented 9 years ago

This library uses java Sockets or SSL Sockets under Netty, so theres no HTTP and no Websockets involved. The idea of this library is to provide a "native" protocol for protocol-buffer RPC services.