2014-08-20 15:59:45 +00:00
|
|
|
package cluster
|
|
|
|
|
|
|
|
import "github.com/influxdb/influxdb/protocol"
|
|
|
|
|
2014-09-03 16:21:41 +00:00
|
|
|
// ResponseChannel is a processor for Responses as opposed to Series
|
|
|
|
// like `engine.Processor'
|
2014-08-20 15:59:45 +00:00
|
|
|
type ResponseChannel interface {
|
|
|
|
Yield(r *protocol.Response) bool
|
2014-08-27 18:16:17 +00:00
|
|
|
Name() string
|
2014-08-20 15:59:45 +00:00
|
|
|
}
|