discovery/communicate/communicator.go
2017-06-26 19:10:52 +09:00

53 lines
1.2 KiB
Go

package communicate
import (
//"bytes"
//"compress/gzip"
//"git.loafle.net/overflow/discovery/communicate/events"
//"git.loafle.net/overflow/central/client/events"
)
type communicator struct {
//Queue chan *events.Event
RootURL string
}
//
//func NewCommunicator() *communicator {
// return &communicator{Queue: make(chan *events.Event, 10)}
//}
//
//func (c *communicator) addEvent(e *events.Event) {
// c.Queue <- e
//}
//
//func CompressDataGzip(data []byte) []byte {
// var b bytes.Buffer
// w := gzip.NewWriter(&b)
// w.Write(data)
// w.Close()
// return b.Bytes()
//}
//
//func (c *communicator) start() {
// go func() {
// for e := range c.Queue {
// go func(event *events.Event) {
// // m := event.Data.(events.URLMaker)
// // data, _ := json.Marshal(event)
// //
// // // compress , accept-encoding : gzip
// // //res, err := http.Post(GetRootURL()+m.GetUrl(), "application/json", bytes.NewBuffer(CompressDataGzip(data)))
// // //res, err := http.Post(GetRootURL()+m.GetUrl(), "application/json", bytes.NewBuffer(data))
// //
// // // todo timeout,error
// // if err != nil {
// // return
// // }
// // if res.StatusCode != 200 && res.StatusCode != 201 {
// //
// // }
// }(e)
// }
// }()
//}