Documentation ¶ Index ¶ type EventLoop type SimpleEventLoop Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type EventLoop ¶ type EventLoop interface { Run(namespaces []string, opts clients.WatchOpts) (<-chan error, error) // Ready returns a channel that will be closed after the first loop iteration is completed successfully. Ready() <-chan struct{} } common interface for event loops type SimpleEventLoop ¶ type SimpleEventLoop interface { Run(ctx context.Context) (<-chan error, error) } Source Files ¶ View all Source files interface.go Click to show internal directories. Click to hide internal directories.