Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type StreamsTopicLister ¶
type StreamsTopicLister interface { // List lists all StreamsTopics in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.StreamsTopic, err error) // StreamsTopics returns an object that can list and get StreamsTopics. StreamsTopics(namespace string) StreamsTopicNamespaceLister StreamsTopicListerExpansion }
StreamsTopicLister helps list StreamsTopics. All objects returned here must be treated as read-only.
func NewStreamsTopicLister ¶
func NewStreamsTopicLister(indexer cache.Indexer) StreamsTopicLister
NewStreamsTopicLister returns a new StreamsTopicLister.
type StreamsTopicListerExpansion ¶
type StreamsTopicListerExpansion interface{}
StreamsTopicListerExpansion allows custom methods to be added to StreamsTopicLister.
type StreamsTopicNamespaceLister ¶
type StreamsTopicNamespaceLister interface { // List lists all StreamsTopics in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.StreamsTopic, err error) // Get retrieves the StreamsTopic from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.StreamsTopic, error) StreamsTopicNamespaceListerExpansion }
StreamsTopicNamespaceLister helps list and get StreamsTopics. All objects returned here must be treated as read-only.
type StreamsTopicNamespaceListerExpansion ¶
type StreamsTopicNamespaceListerExpansion interface{}
StreamsTopicNamespaceListerExpansion allows custom methods to be added to StreamsTopicNamespaceLister.
Click to show internal directories.
Click to hide internal directories.