英文:
Golang websocket's SetWriteDeadline function
问题
Go的Websockets有一个**SetWriteDeadline()**函数,用于设置连接的网络写入截止时间。我需要在每次发送数据之前都设置它吗,还是只需要在连接创建时设置一次?
英文:
Go's websockets have a SetWriteDeadline() function to set the connection's network write deadline. Do I need to set it before every data sending or it can be done just once when the connection is created?
答案1
得分: 1
为了让它有用,每次都要设置它。请注意,它接受的是 time.Time
而不是 time.Duration
:
SetWriteDeadline(t time.Time) error
英文:
For it to be useful at all, set it every time. Note that it takes a time.Time
, not a time.Duration
:
SetWriteDeadline(t time.Time) error
答案2
得分: -4
将其设置为一次。
附注:我自己检查过了,这是一个简单的代码。
英文:
Set it once.
PS I checked it myself, it's a simple code.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论