Browse Source

add a comment for PingPongLatencyTimer [ci skip]

pull/604/head
Anton Kaliaev 7 years ago
parent
commit
23a87304cc
No known key found for this signature in database GPG Key ID: 7B6881D965918214
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      rpc/lib/client/ws_client.go

+ 3
- 1
rpc/lib/client/ws_client.go View File

@ -19,7 +19,7 @@ import (
)
const (
// Time allowed to write a message to the peer.
// Time allowed to write a message to the server.
writeWait = 10 * time.Second
// Maximum reconnect attempts
@ -40,6 +40,8 @@ type WSClient struct {
Endpoint string // /websocket/url/endpoint
Dialer func(string, string) (net.Conn, error)
// Time between sending a ping and receiving a pong. See
// https://godoc.org/github.com/rcrowley/go-metrics#Timer.
PingPongLatencyTimer metrics.Timer
// user facing channels, closed only when the client is being stopped.


Loading…
Cancel
Save