Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrNotFound = errors.New("not found")
Functions ¶
func CheckWorkflowName ¶
Types ¶
type DigestData ¶
type ErrNotExistsWorkflow ¶
type ErrNotExistsWorkflow struct {
Name string
}
func (*ErrNotExistsWorkflow) Error ¶
func (e *ErrNotExistsWorkflow) Error() string
type EventDocument ¶
type EventDocument struct { Id primitive.ObjectID `bson:"_id,omitempty"` Tenant api_model.Tenant `bson:"tenant"` Subscriber api_model.Subscriber `bson:"subscriber"` WorkflowName string `bson:"workflowName"` WorkflowRevision int64 `bson:"workflowRevision"` EventType EventType `bson:"eventType"` NextAfterAt time.Time `bson:"nextAfterAt"` Finished bool `bson:"finished"` // Data and FlowState is available when EventType == EventTypeTrigger Data bsoncore.Document `bson:"data,omitempty"` FlowState []FlowState `bson:"flowState"` FlowError []*string `bson:"flowError"` DigestData *DigestData `bson:"digestData,omitempty"` }
func (*EventDocument) DataFrom ¶
func (d *EventDocument) DataFrom(data interface{}) error
func (*EventDocument) GetId ¶
func (d *EventDocument) GetId() string
func (*EventDocument) ToBsonForMeta ¶
func (d *EventDocument) ToBsonForMeta() (bson.M, error)
type TriggerParams ¶
type WorkflowDocument ¶
type WorkflowDocument struct { Id primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"` Name string `bson:"name" json:"name"` Revision int64 `bson:"revision" json:"revision"` Flow []*api_model.WorkflowFlowItem `bson:"flow" json:"flow"` }
func (*WorkflowDocument) GetId ¶
func (d *WorkflowDocument) GetId() string
type WorkflowService ¶
type WorkflowService interface { Start(appCtx context.Context, mongoDatabase *mongo.Database, brokerClient taskqueue.Client, leaderElection *mongo_leader.LeaderElection) error Trigger(params *TriggerParams) (eventId string, err error) CreateWorkflow(doc *WorkflowDocument) (*WorkflowDocument, error) GetWorkflow(name string) (*WorkflowDocument, error) }
func New ¶
func New(templateService template_service.TemplateService, notificationService notification_service.NotificationService, mailSender mailsender.MailSender) WorkflowService
Click to show internal directories.
Click to hide internal directories.