Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/coinrust/wsconn

wsconn is a websocket client based on gorilla/websocket that will automatically reconnect if the connection is dropped and keeps the connection alive.
https://github.com/coinrust/wsconn

gorilla websocket websocket-client wsconn

Last synced: 3 months ago
JSON representation

wsconn is a websocket client based on gorilla/websocket that will automatically reconnect if the connection is dropped and keeps the connection alive.

Awesome Lists containing this project

README

        

# wsconn
wsconn is a websocket client based on gorilla/websocket that will automatically reconnect if the connection is dropped and keeps the connection alive.

## Example
```go
package main

import (
"fmt"
"github.com/coinrust/wsconn"
"log"
)

func main() {
wsURL := "wss://api.zb.live/websocket"
ws := wsconn.NewWs(
wsconn.WsUrlOption(wsURL),
wsconn.WsDumpOption(true),
wsconn.WsAutoReconnectOption(true),
wsconn.WsMessageHandleFuncOption(func(bytes []byte) error {
log.Printf("%v", string(bytes))
return nil
}),
wsconn.WsErrorHandleFuncOption(func(err error) {
log.Printf("%v", err)
}),
)
ch := fmt.Sprintf("%v_depth", "zbqc") // zbqc_depth
sub := map[string]string{
"event": "addChannel",
"channel": ch,
}
ws.Subscribe(sub)

select {}
}
```