项目作者: vacp2p

项目描述 :
Data Sync client
高级语言: Go
项目地址: git://github.com/vacp2p/dasy.git
创建时间: 2019-07-03T22:10:56Z
项目社区:https://github.com/vacp2p/dasy

开源协议:MIT License

下载


DaSy 🌼

Version
License
API Reference
Go Report Card
Build Status

/ˈdeɪzi/

Data Sync Client

This repository implements a basic messaging data sync client that operates on top of mvds.

Usage

Listening to messages

  1. postchan := make(chan event.Payload)
  2. client.Feed(protobuf.Message_POST).Subscribe(postchan)
  3. for {
  4. post := <-postchan
  5. fmt.Printf("%+v\n", post)
  6. }