Overview
Function |
|
---|---|
Description | Returns the added event stream definition. |
Output | A JSON object containing the added event stream definition stream id in the ‘message’ element within the argument of the success callback. |
Example
var streamDef = { name : "TEST", version : "1.0.0", nickName : "test", description : "sample description" payloadData : { name : "STRING", married : "BOOLEAN", age : "INTEGER" }, metaData : { NIC: "LONG" }, correlationData : { }, tags : [] }; client.addStreamDefinition(streamDef, function(data) { console.log (data[“message”]); }, function(error) { console.log(“error occured: ” + error[“message”]); });
Sample output
<stream-name>:<stream-id>