Skip to content

一套易于部署、不依赖任何服务和数据库的websocket订阅、推送微服务,可用于openapi向频道广播实时数据。

Notifications You must be signed in to change notification settings

xiiiew/websocket-push-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

websocket-push-go

一套基于golang的websocket订阅、推送服务。客户端使用websocket连接至服务,并可订阅任意频道。业务端可使用HTTP和RPC接口推送消息至一个或者所有频道。

websocket消息约定

  • 订阅频道
{"action":"sub","ch":"ch_name"}
  • 取消订阅频道
{"action":"unsub","ch":"ch_name"}
  • ping
{"ping":1605751068}
  • pong
{"pong":1605751068}

HTTP推送

HTTP推送接口面向业务端。业务端将消息封装到Request Body中,调用API接口,推送至相应WS连接。

API

  • 推送到频道

POST http://localhost:2181/push/ch/ch_name

  • 推送到所有连接

POST http://localhost:2181/push/all

RPC推送

使用RPC接口推送对比使用HTTP接口推送有较大的性能优势,建议其他业务端使用此类接口推送消息。该项目使用gRPC,proto文件位于websocket-push-go/protos/中,其他语言可通过相应工具生成对应的代理类。

API

Golang版
  • 推送到频道
PushCh(ctx context.Context, in *PushChRequest, opts ...grpc.CallOption) (*PushChReply, error)
  • 推送到所有连接
PushAll(ctx context.Context, in *PushAllRequest, opts ...grpc.CallOption) (*PushAllReply, error)

待新增功能

  • 服务状态监控及websocket连接统计

About

一套易于部署、不依赖任何服务和数据库的websocket订阅、推送微服务,可用于openapi向频道广播实时数据。

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages