Files
weave-scope/xfer/publisher.go
2015-09-24 16:11:55 +02:00

11 lines
194 B
Go

package xfer
import "io"
// Publisher is something which can send a stream of data somewhere, probably
// to a remote collector.
type Publisher interface {
Publish(io.Reader) error
Stop()
}