Async 0.4.1+

function (ctx, data) {}

Parameters
  • ctx: OpenFunction context object
    • ctx.send(payload, output?): Send payload to all or one specific output of Dapr Output Binding or Pub Broker
  • data: Data recieved from Dapr Input Binding or Sub Broker
Notice
  • ctx.send CAN be invoked where necessary, when you have certain outgoing data to send

(HTTP) Sync

function (req, res) {}

Parameters
  • req: Express standard request object
  • res: Express standard response object
    • res.send(body): Use this method to send HTTP response in most common cases
NOTICE
  • Response process SHOULD be explictly ended with res.send(), res.json(), res.end() and alike methods