You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
we would like to retrieve the address of a streaming custom function and we re trying this kind of parameters in the function's options property (that MSFT shared with us previously) :
a. "requiresStreamAddress": true
b. "stream": true.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
we would like to retrieve the address of a streaming custom function and we re trying this kind of parameters in the function's options property (that MSFT shared with us previously) :
a. "requiresStreamAddress": true
b. "stream": true.
like in :
{ "description": "Streaming function", "id": "CONTOSO.Address", "name": "Test", "parameters": [], "options": { "stream": true, "requiresStreamAddress": true }, "result": { "dimensionality": "matrix" } },and retrieve the address through the invocation object :
function getStreamAddress(interval: number, invocation: CustomFunctions.StreamingInvocation<string>) { let address = invocation.address;is it something supported in Excel at the moment please ?
Beta Was this translation helpful? Give feedback.
All reactions