You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
454 B
11 lines
454 B
package stream |
|
|
|
const ( |
|
StreamKlineLive = "/stream/kline/live/:bar" // 实时k线推送, 1s,5s,1m... stream.kline.live.* |
|
StreamKlineLiveClose = "/stream/kline/live/close" // 实时K线关闭时推送 |
|
StreamKlineLiveClose1s = "/stream/kline/live/close/1s" // 实时K线关闭时推送 stream.kline.live.close.{bar} |
|
) |
|
|
|
// todo AntPathMatcher |
|
// consumer -> sub /k/1s, /k/5s -> handler /k/1s |
|
// producer -> /k/1s -> get subs -> broadcast
|
|
|