-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregister.go
29 lines (23 loc) · 980 Bytes
/
register.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package controller
// This file defines types for controllers to register themselves with the
// controller package.
// Interface represents a controller that can run. 'workers' should be the
// number of independent goroutines for this controller in question that
// are to be run, and the workers should shut down upon a signal on stopCh.
// This method should block until all workers have exited cleanly, thus
// allowing for graceful shutdown of control loops.
type Interface func(workers int, stopCh <-chan struct{}) error
// Constructor is a function that creates a new control loop given a
// controller Context.
type Constructor func(ctx *Context) Interface
var (
known = make(map[string]Constructor, 0)
)
// Known returns a map of the registered controller Constructors
func Known() map[string]Constructor {
return known
}
// Register registers a controller constructor with the controller package
func Register(name string, fn Constructor) {
known[name] = fn
}