Documentation ¶
Index ¶
- Constants
- func ContinueOnError(a *App) error
- func EngineSettings(svcManager *service.Manager, actionSettings map[string]map[string]interface{}) func(*App) error
- func FinalizeProperties(processors ...property.PostProcessor) func(*App) error
- func GetDelayedStopInterval() string
- func GetValue(name string) (value interface{}, exists bool)
- func SetValue(name string, value interface{}) error
- type App
- func (a *App) GetProperty(name string) (interface{}, bool)
- func (a *App) GetResource(id string) *resource.Resource
- func (a *App) Name() interface{}
- func (a *App) PostAppEvent(appStatus Status)
- func (a *App) ResourceManager() *resource.Manager
- func (a *App) RuntimeSettings() map[string]interface{}
- func (a *App) ServiceManager() *service.Manager
- func (a *App) Start() error
- func (a *App) Stop() error
- func (a *App) TriggerStatuses() []*managed.StatusInfo
- func (a *App) Version() interface{}
- type AppEvent
- type AppResolver
- type Config
- type Option
- type Status
Constants ¶
View Source
const ( FAILED = "Failed" STARTED = "Started" STARTING = "Starting" STOPPED = "Stopped" )
View Source
const AppEventType = "appevent"
View Source
const (
EnvKeyDelayedAppStopInterval = "FLOGO_APP_DELAYED_STOP_INTERVAL"
)
Variables ¶
This section is empty.
Functions ¶
func ContinueOnError ¶
func EngineSettings ¶ added in v0.0.4
func FinalizeProperties ¶
func FinalizeProperties(processors ...property.PostProcessor) func(*App) error
func GetDelayedStopInterval ¶ added in v0.0.4
func GetDelayedStopInterval() string
Types ¶
type App ¶
type App struct {
// contains filtered or unexported fields
}
func (*App) GetProperty ¶
func (*App) PostAppEvent ¶ added in v0.0.4
func (*App) ResourceManager ¶
func (*App) RuntimeSettings ¶ added in v0.0.4
func (*App) ServiceManager ¶ added in v0.0.4
func (*App) TriggerStatuses ¶
func (a *App) TriggerStatuses() []*managed.StatusInfo
TriggerStatuses gets the status information for the triggers
type AppResolver ¶
type AppResolver struct { }
func (*AppResolver) GetResolverInfo ¶
func (r *AppResolver) GetResolverInfo() *resolve.ResolverInfo
type Config ¶
type Config struct { Name string `json:"name"` Type string `json:"type"` Version string `json:"version"` Description string `json:"description"` AppModel string `json:"appModel"` Imports []string `json:"imports,omitempty"` Properties []*data.Attribute `json:"properties,omitempty"` Channels []string `json:"channels,omitempty"` Triggers []*trigger.Config `json:"triggers"` Resources []*resource.Config `json:"resources,omitempty"` Actions []*action.Config `json:"actions,omitempty"` Schemas map[string]*schema.Def `json:"schemas,omitempty"` Connections map[string]*connection.Config `json:"connections,omitempty"` }
Def is the configuration for the App
Click to show internal directories.
Click to hide internal directories.