dayorbyte / dispatchd

A go-based AMQP server
MIT License
62 stars 9 forks source link

HTTP/2 Protocol Support #5

Open dayorbyte opened 8 years ago

dayorbyte commented 8 years ago

HTTP/2 is a framed binary protocol, so it makes a lot of sense to allow queue operations via it. The easiest way to do this is probably grpc, so that should be the first option looked at.

dayorbyte commented 8 years ago

I'm pretty sure I don't want to use gRPC now since server push + framing is really what I need. However, the go support for push is only on a branch right now so it isn't worth integrating yet