Documentation
¶
Index ¶
- Variables
- type Controller
- func (c *Controller) Cancel(ctx context.Context, session *auth.Session, repoRef string, ...) (*types.Execution, error)
- func (c *Controller) Create(ctx context.Context, session *auth.Session, repoRef string, ...) (*types.Execution, error)
- func (c *Controller) Delete(ctx context.Context, session *auth.Session, repoRef string, ...) error
- func (c *Controller) Find(ctx context.Context, session *auth.Session, repoRef string, ...) (*types.Execution, error)
- func (c *Controller) List(ctx context.Context, session *auth.Session, repoRef string, ...) ([]*types.Execution, int64, error)
- func (c *Controller) StashFile(ctx context.Context, session *auth.Session, executionNum int64, stageNum int64, ...) (interface{}, error)
Constants ¶
This section is empty.
Variables ¶
View Source
var WireSet = wire.NewSet( ProvideController, )
WireSet provides a wire set for this package.
Functions ¶
This section is empty.
Types ¶
type Controller ¶
type Controller struct {
// contains filtered or unexported fields
}
func NewController ¶
func NewController( tx dbtx.Transactor, authorizer authz.Authorizer, executionStore store.ExecutionStore, checkStore store.CheckStore, canceler canceler.Canceler, commitService commit.Service, triggerer triggerer.Triggerer, repoStore store.RepoStore, stageStore store.StageStore, pipelineStore store.PipelineStore, store storage.PipelineStorage, ) *Controller
func ProvideController ¶
func ProvideController( tx dbtx.Transactor, authorizer authz.Authorizer, executionStore store.ExecutionStore, checkStore store.CheckStore, canceler canceler.Canceler, commitService commit.Service, triggerer triggerer.Triggerer, repoStore store.RepoStore, stageStore store.StageStore, pipelineStore store.PipelineStore, pipelineStorage storage.PipelineStorage, ) *Controller
Click to show internal directories.
Click to hide internal directories.