actreply

package
v0.5.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 1, 2018 License: BSD-3-Clause Imports: 5 Imported by: 0

README

flogo-reply

This activity provides your flogo action/flow the ability to reply to a trigger invocation and set output values.

Installation

flogo install github.com/TIBCOSoftware/flogo-contrib/activity/actreply

Schema

Input and Output:

{
  "input":[
    {
      "name": "mappings",
      "type": "array",
      "required": true
    }
  ],
  "output": [
  ]
}

Settings

Setting Description
mappings The mappings to the action/flow ouputs

Configuration Examples

Simple

Configure a activity to reply and set the output values to literals "1" and 2.

{
  "id": "reply",
  "type": 1,
  "ref": "github.com/TIBCOSoftware/flogo-contrib/activity/actreply",
  "name": "Reply",
  "input": { 
  	"mappings":[
      { "type": 2, "value": "1", "mapTo": "Output1" },
      { "type": 2, "value": 2, "mapTo": "Output2" }
    ]
  }
}

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewActivity

func NewActivity(metadata *activity.Metadata) activity.Activity

NewActivity creates a new ReplyActivity

Types

type ReplyActivity

type ReplyActivity struct {
	// contains filtered or unexported fields
}

ReplyActivity is an Activity that is used to reply/return via the trigger inputs : {method,uri,params} outputs: {result}

func (*ReplyActivity) Eval

func (a *ReplyActivity) Eval(ctx activity.Context) (done bool, err error)

Eval implements api.Activity.Eval - Invokes a REST Operation

func (*ReplyActivity) Metadata

func (a *ReplyActivity) Metadata() *activity.Metadata

Metadata returns the activity's metadata

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL