Adaptive Framework 0.9.0

open_uri

The following is a list of properties for the function open_uri:

PropertyValue
briefOpen a URI
categorystream
descriptionThis will open a read or write stream for a URI.
functionIdopen_uri
functionLabelopen_uri
parameters[ { "brief": "Stream id", "dataType": "string", "description": "This is the streamId that will be associated with this open URI stream.", "name": "streamId" }, { "brief": "URI", "dataType": "string", "description": "This is the URI of the stream to open.", "name": "uri" }, { "brief": "Mode", "dataType": "string", "description": "This is the access mode string. Values can be \"r\" for read or \"w\" for write.", "name": "mode" }, { "brief": "Auto flush", "dataType": "boolean", "description": "If specified and true, this will automatically flush the stream's buffers after every write.", "name": "autoFlush", "optional": true } ]
returns{ "brief": "streamNumber", "dataType": "integer", "description": "The streamNumber for the streamId or -1 if there was an error. Use get_stream_error() for error information." }
sideEffects[ "Stream is opened" ]