Files
kubesphere/pkg/simple/client/es/versions/interface.go
2020-12-29 14:17:21 +08:00

10 lines
241 B
Go

package versions
// versioned es client interface
type Client interface {
Search(indices string, body []byte, scroll bool) ([]byte, error)
Scroll(id string) ([]byte, error)
ClearScroll(id string)
GetTotalHitCount(v interface{}) int64
}