influxdb/cluster/response_processor.go

11 lines
245 B
Go
Raw Normal View History

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'
type ResponseChannel interface {
Yield(r *protocol.Response) bool
2014-08-27 18:16:17 +00:00
Name() string
}