Documentation
¶
Index ¶
- type Errors
- type Searcher
- type Stringer
- type TracedSearcher
- func (t *TracedSearcher) Many(a0 context.Context, a1 map[int]string) Errors
- func (t *TracedSearcher) One(a0 context.Context, a1 int, a2 int, a3 string) error
- func (t *TracedSearcher) Search(a0 context.Context, a1 string) error
- func (t *TracedSearcher) SearchAll(a0 context.Context, a1 ...string) (chan<- string, error)
- func (t *TracedSearcher) StoreAll(a0 context.Context, a1 <-chan string) error
- func (t *TracedSearcher) StoreAnything(a0 context.Context, a1 interface{}) error
- func (t *TracedSearcher) StoreInterface(a0 context.Context, a1 Stringer) (int, error)
- func (t *TracedSearcher) StoreMap(a0 context.Context, a1 map[int8]string) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Searcher ¶
type Searcher interface { Search(context.Context, string) error SearchAll(context.Context, ...string) (chan<- string, error) StoreAll(context.Context, <-chan string) error StoreMap(context.Context, map[int8]string) error StoreInterface(context.Context, Stringer) (int, error) StoreAnything(context.Context, interface{}) error One(context.Context, int, int, string) error Many(context.Context, map[int]string) Errors }
type TracedSearcher ¶
type TracedSearcher struct {
// contains filtered or unexported fields
}
TracedSearcher is a traced implementation of Searcher
func (*TracedSearcher) Search ¶
func (t *TracedSearcher) Search(a0 context.Context, a1 string) error
func (*TracedSearcher) StoreAll ¶
func (t *TracedSearcher) StoreAll(a0 context.Context, a1 <-chan string) error
func (*TracedSearcher) StoreAnything ¶
func (t *TracedSearcher) StoreAnything(a0 context.Context, a1 interface{}) error
func (*TracedSearcher) StoreInterface ¶
Click to show internal directories.
Click to hide internal directories.