Exception java.nio.channels.ClosedChannelException when write to client channel

前端 未结 2 798
花落未央
花落未央 2021-01-05 09:58

I have created a game server using netty 3.5.8. At first, there is not any problem with sending data from server to client. But when server operates for a while, there are m

2条回答
  •  走了就别回头了
    2021-01-05 10:28

    ClosedChannelException means you have closed the channel and continued to use it. It is a programming error on your part.

提交回复
热议问题