Discover Packages
github.com/TNTworks/flogo-contrib/activity/channel
package
module
Version:
v0.0.0-...-b0b21a8
Opens a new window with list of versions in this module.
Published: May 24, 2022
License: BSD-3-Clause
Opens a new window with license information.
Imports: 4
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
README
README
¶
Channel
This activity allows you to put a data on a named channel in the flogo engine. Channels are
essentially an internal communication channel in the engine.
Installation
Flogo CLI
flogo install github.com/TNTworks/flogo-contrib/activity/channel
Configuration
Name
Type
Description
channel
string
The name of channel to use - REQUIRED
data
any
The data to put on the channel
Expand ▾
Collapse ▴
Documentation
¶
Activity is an Activity that is used to publish some data on a channel
inputs : {channel, data}
outputs: none
Eval publishes the data on the specified channel
Metadata returns the activity's metadata
type Input struct {
Channel string `md:"channel,required"`
Data interface{} `md:"data"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.