| 24 | } |
| 25 | |
| 26 | type Client struct { |
| 27 | sync.Mutex |
| 28 | conn *zk.Conn |
| 29 | |
| 30 | addrlist string |
| 31 | username string |
| 32 | password string |
| 33 | timeout time.Duration |
| 34 | |
| 35 | logger *zkLogger |
| 36 | dialAt time.Time |
| 37 | closed bool |
| 38 | } |
| 39 | |
| 40 | type zkLogger struct { |
| 41 | logfunc func(format string, v ...interface{}) |
nothing calls this directly
no outgoing calls
no test coverage detected