Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Types = make(map[string]TypeFactory)
Functions ¶
Types ¶
type DefaultStepsVerticle ¶
type DefaultStepsVerticle struct { DefaultVerticle `yaml:",inline"` Steps []Step `yaml:"steps,omitempty"` }
func NewDefaultStepsVerticle ¶
func NewDefaultStepsVerticle() DefaultStepsVerticle
func (*DefaultStepsVerticle) Receive ¶
func (v *DefaultStepsVerticle) Receive(ac actor.Context)
type DefaultVerticle ¶
type DefaultVerticle struct { camel.Identifiable Identity string `yaml:"id"` // contains filtered or unexported fields }
func NewDefaultVerticle ¶
func NewDefaultVerticle() DefaultVerticle
func (*DefaultVerticle) Context ¶
func (v *DefaultVerticle) Context() camel.Context
func (*DefaultVerticle) Dispatch ¶
Dispatch send messages to the child steps, returns true if the dispatch is completed.
func (*DefaultVerticle) ID ¶
func (v *DefaultVerticle) ID() string
func (*DefaultVerticle) SetContext ¶
func (v *DefaultVerticle) SetContext(ctx camel.Context)
type Step ¶
type Step struct { Reifyable // contains filtered or unexported fields }
func (*Step) UnmarshalYAML ¶
type TypeFactory ¶
type TypeFactory func() interface{}
Click to show internal directories.
Click to hide internal directories.