Andrey Vasenin
Andrey Vasenin
`setConnectionTimeout` sets the timeout for [Socket#connect](https://docs.oracle.com/javase/7/docs/api/java/net/Socket.html#connect(java.net.SocketAddress,%20int)) operation. It doesn't related to monitoring your connection. WebSocket and nv-websocket library allows you to use WebSocket ping/pong frames as heartbeat messages to monitor...
Typical scenario: offline queue. When you are disconnected then you store all messages in queue and send them when become online. In this case user will get deadlock if the...
We are going to add read-only mode in the near future. Stay turned.
How are you going to use this API? Could you provide your cases?
i'm also interested on this. Currently was able to workaround this with ``` func (v *Validator) validateExpr(ctx context.Context, fl validator.FieldLevel) bool { expr := fl.Field().String() _, err := doThing(ctx, expr)...