v1

package
v0.0.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 13, 2019 License: MIT Imports: 4 Imported by: 0

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.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL