Documentation
¶
Overview ¶
Package adapter provides common interface for controller adapters.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Adapter ¶
type Adapter interface {
// Run starts the adapter.
Run(ctx context.Context)
// WatchTrigger is called to notify the adapter about a new watch event.
//
// WatchTrigger should not block and should process the event asynchronously.
WatchTrigger(md *reduced.Metadata)
}
Adapter is common interface for controller adapters.
Click to show internal directories.
Click to hide internal directories.