避免关闭插座

时间:2018-07-04 23:31:30

标签: sockets groovy

有什么方法可以防止关闭插槽的麻烦吗?

示例:

def socket = new Socket(host,port)
def outputString = "example"

socket.withStreams { input, output ->
     output << outputString
}

assert socket.isClosed() == true

我想保持插座打开。

谢谢。

0 个答案:

没有答案