Azure / DotNetty

DotNetty project – a port of netty, event-driven asynchronous network application framework
Other
4.09k stars 977 forks source link

Cloud I use dotnetty with protobuf-net ? #274

Closed PMExtra closed 7 years ago

PMExtra commented 7 years ago

I know there is a library called DotNetty.Codecs.Protobuf that using Google.Protobuf for serialization.

But I have another library called protobuf-net, that follows typical .NET patterns and more convenient. I have a legacy project using protobuf-net and now want to migrate to dotnetty.

Could I still use protobuf-net instead of Google's library?

nayato commented 7 years ago

you could sure do that assuming you build your own codec. We have no plans supporting protobuf-net at the time but I assume it should be straight-forward to write a codec like one we have for google's version.