Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewManagerRouter ¶
NewManagerRouter returns a new manager router.
Types ¶
type Manager ¶
type Manager interface { executor.Plan // Get is used to return a plan by name. Get(context.Context, string) (*config.Plan, error) // Add is used to add a new plan. Add(context.Context, *config.Plan) error // Delete is used to remove a plan. Delete(context.Context, string) error // Plans returns a list of all known plans. Plans(context.Context) ([]*config.Plan, error) }
Manager is used for scheduling execution plans.
Click to show internal directories.
Click to hide internal directories.