Azure / DotNetty

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

Why AcceptOutboundMessage is not abstract? #148

Closed zmyer closed 7 years ago

zmyer commented 8 years ago

In DotNetty,the function public bool AcceptOutboundMessage(object msg) => msg is T; is not abstract,so that much more limitions when using EmbeddedChannel.

nayato commented 8 years ago

I believe you mean not virtual. That makes sense. It is generally a problem during port as the default in Java is virtual while in .NET it isn't.

nayato commented 7 years ago

Fixed in 0.4.0