Skip to content

Latest commit

 

History

History
37 lines (33 loc) · 784 Bytes

README.md

File metadata and controls

37 lines (33 loc) · 784 Bytes

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

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 {}
}