非同期通信モデルでサーバーを作成しようとしていて、複数のポートをバインドしたいのですが、複数の bind メソッドを呼び出すと、「AlreadyBoundException」というエラーがスローされます。これを行う方法はありますか?これが私のコードです
try(AsynchronousServerSocketChannel listener = AsynchronousServerSocketChannel.open()){
if(listener.isOpen()){
listener.setOption(StandardSocketOptions.SO_RCVBUF, 4*1024);
listener.setOption(StandardSocketOptions.SO_REUSEADDR, true);
listener.bind(new InetSocketAddress(9001));
listener.bind(new InetSocketAddress(9002));