Documentation
¶
Index ¶
Constants ¶
View Source
const V_RESULT_ALL int = 3
View Source
const V_RESULT_ERR int = 2
View Source
const V_RESULT_OK int = 1
Variables ¶
This section is empty.
Functions ¶
Types ¶
type CondParams ¶
type ConfigSetting ¶
type DAGConfig ¶
type DAGConfig struct {
// contains filtered or unexported fields
}
func NewDAGConfigByContent ¶
func NewDAGConfigByFile ¶
type FieldFlags ¶
type FieldMeta ¶
type FieldMeta struct {
Name string `json:"name"`
ID int64 `json:"id"`
Type string `json:"type"`
Flags FieldFlags `json:"flags"`
}
type GraphCluster ¶
type GraphCluster struct {
Desc string `toml:"desc"`
StrictDsl bool `toml:"strict_dsl"`
DefaultExprProcessor string `toml:"default_expr_processor"`
DefaultDefaultPoolSize string `toml:"default_context_pool_size"`
Graph []Graph `toml:"graph"`
ConfigSetting []ConfigSetting `toml:"config_setting"`
// contains filtered or unexported fields
}
func (*GraphCluster) ContainsConfigSetting ¶
func (p *GraphCluster) ContainsConfigSetting(name string) bool
type OperatorMeta ¶
type Vertex ¶
type Vertex struct {
ID string `toml:"id"`
Processor string `toml:"processor"`
Cond string `toml:"cond"`
Expect string `toml:"expect"`
ExpectConfig string `toml:"expect_config"`
SelectArgs []CondParams `toml:"select_args"`
Cluster string `toml:"cluster"`
Graph string `toml:"graph"`
Successor []string `toml:"successor"`
SuccessorOnOk []string `toml:"if"`
SuccessorOnErr []string `toml:"else"`
Deps []string `toml:"deps"`
DepsOnOk []string `toml:"deps_on_ok"`
DepsOnErr []string `toml:"deps_on_err"`
Input []GraphData `toml:"input"`
Output []GraphData `toml:"output"`
Start bool `toml:"start"`
// contains filtered or unexported fields
}
Click to show internal directories.
Click to hide internal directories.