github.com/TIBCOSoftware/flogo-lib@v0.5.9/core/activity/reply.go (about) 1 package activity 2 3 // ReplyHandler is used to reply back to whoever started the flow instance 4 type ReplyHandler interface { 5 6 // Reply is used to reply with the results of the instance execution 7 Reply(code int, data interface{}, err error) 8 }