alphacomm / alpharpc

AlphaRPC is an RPC daemon based on ZeroMQ that can be used to distribute workload over one or multiple servers.
alpharpc.net
BSD 3-Clause "New" or "Revised" License
2 stars 5 forks source link

Bugfix: change ClientHandler interface to Router. #28

Closed reenl closed 10 years ago

reenl commented 10 years ago

Because the ClientHandler interface was a reply socket, it could only handle a single client at a time.

By changing to a router socket, multi-client functionality is restored.

See the ZeroMQ guide for more information.