2015-12-09 22:23:16 +03:00
|
|
|
package selector
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/micro/go-micro/registry"
|
2016-01-06 19:25:12 +03:00
|
|
|
|
|
|
|
"golang.org/x/net/context"
|
2015-12-09 22:23:16 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type Options struct {
|
|
|
|
Registry registry.Registry
|
2015-12-31 21:14:40 +03:00
|
|
|
|
2016-01-06 19:25:12 +03:00
|
|
|
// Other options for implementations of the interface
|
|
|
|
// can be stored in a context
|
|
|
|
Context context.Context
|
2015-12-09 22:23:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type SelectOptions struct {
|
|
|
|
Filters []SelectFilter
|
2015-12-31 21:14:40 +03:00
|
|
|
|
2016-01-06 19:25:12 +03:00
|
|
|
// Other options for implementations of the interface
|
|
|
|
// can be stored in a context
|
|
|
|
Context context.Context
|
2015-12-09 22:23:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Option used to initialise the selector
|
|
|
|
type Option func(*Options)
|
|
|
|
|
|
|
|
// SelectOption used when making a select call
|
|
|
|
type SelectOption func(*SelectOptions)
|
|
|
|
|
|
|
|
// Registry sets the registry used by the selector
|
|
|
|
func Registry(r registry.Registry) Option {
|
|
|
|
return func(o *Options) {
|
|
|
|
o.Registry = r
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Filter adds a filter function to the list of filters
|
|
|
|
// used during the Select call.
|
|
|
|
func Filter(fn SelectFilter) SelectOption {
|
|
|
|
return func(o *SelectOptions) {
|
|
|
|
o.Filters = append(o.Filters, fn)
|
|
|
|
}
|
|
|
|
}
|