Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type TodoLister ¶
type TodoLister interface { // List lists all Todos in the indexer. List(selector labels.Selector) (ret []*v1.Todo, err error) // Todos returns an object that can list and get Todos. Todos(namespace string) TodoNamespaceLister TodoListerExpansion }
TodoLister helps list Todos.
func NewTodoLister ¶
func NewTodoLister(indexer cache.Indexer) TodoLister
NewTodoLister returns a new TodoLister.
type TodoListerExpansion ¶
type TodoListerExpansion interface{}
TodoListerExpansion allows custom methods to be added to TodoLister.
type TodoNamespaceLister ¶
type TodoNamespaceLister interface { // List lists all Todos in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1.Todo, err error) // Get retrieves the Todo from the indexer for a given namespace and name. Get(name string) (*v1.Todo, error) TodoNamespaceListerExpansion }
TodoNamespaceLister helps list and get Todos.
type TodoNamespaceListerExpansion ¶
type TodoNamespaceListerExpansion interface{}
TodoNamespaceListerExpansion allows custom methods to be added to TodoNamespaceLister.
Click to show internal directories.
Click to hide internal directories.