xdmp.streamable( value as Sequence ) as Sequence
Returns a sequence of strings describing the streaming nature of the argument value.
Parameters | |
---|---|
value | The value to return the attributes from. |
String values returned include zero or more of the following:
future
: The whole result requires more processing time for execution to be completed.iterator
: The result is a sequence that is calculated one value at a time as required.concurrent
: The result is being calculated concurrently in a separate thread. This might also
be because the result is waiting on network or IO.xdmp.streamable(cts.search("hello")); => "iterator"
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.