Documentation
¶
Index ¶
Constants ¶
View Source
const ( // CorrelationKey is the flag name for the correlation key for a BPMN message. CorrelationKey = "correlationKey" // Server is the fhe flag name for the server address. Server = "server" // LogLevel is the flag name for the logging level. LogLevel = "loglevel" // Vars is the flag name for variables passed to the workflow engine. Vars = "vars" // VarsShort is the flag name for variables passed to the workflow engine. VarsShort = "v" // CorrelationKeyShort is the short flag name for the correlation key for a BPMN message. CorrelationKeyShort = "k" // ServerShort is the the short flag name for the server address. ServerShort = "s" // LogLevelShort is the short flag name for the logging level. LogLevelShort = "l" // DebugTrace is the short flag name for the trace switch. DebugTrace = "debug" // DebugTraceShort is the short flag name for the trace switch. DebugTraceShort = "d" // JsonOutput is the flag name for machine-readable json responses. JsonOutput = "json" // JsonOutputShort is the short flag name for machine-readable json responses. JsonOutputShort = "j" // Namespace if the flag name for namespace. Namespace = "namespace" // NamespaceShort is the short flag name for the namespace. NamespaceShort = "n" // Filter specifies field filters when listening to a message stream Filter = "filter" // FilterShort short form for Filter FilterShort = "f" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FilterFields ¶ added in v1.1.1807
type FilterFields struct {
ProcessInstanceId string
ExecutionId string
ProcessId string
WorkflowId string
ElementId string
ElementType string
}
FilterFields are the set of fields that are filterable on
func (*FilterFields) Enabled ¶ added in v1.1.1807
func (ff *FilterFields) Enabled() bool
Enabled determines if the filter is enabled
func (*FilterFields) Set ¶ added in v1.1.1807
func (ff *FilterFields) Set(filterFields string) error
Set parses the filterFields syntax
func (*FilterFields) String ¶ added in v1.1.1807
func (ff *FilterFields) String() string
String string val of filter fields
func (*FilterFields) Type ¶ added in v1.1.1807
func (ff *FilterFields) Type() string
Type is the type of the filter field
Click to show internal directories.
Click to hide internal directories.