How to get Stream UUID using rtc api
4 answers
If you are working with server side API, retrieve the stream's handle object, then apply the method getItemID() to it.
If you need the UUID in a String format, just apply getItemId().toString() sequentially.
These methods will likely work with Plain Java API as well, just try.
Comments
no it does not work on stream handle as the there is not get method available for getting the itemId,here is my code can you suggest where actually you are telling to call the getIemId(), as i have tried streamHandle.getItemID().toString(); but it does not worked for me
"
for (IWorkspaceHandle wksHandle : workspaceHandles)
{
count++;
streamHandle = workspaceMgr.getWorkspaceConnection(wksHandle, null);
streamName = streamHandle.getName();
{
count++;
streamHandle = workspaceMgr.getWorkspaceConnection(wksHandle, null);
streamName = streamHandle.getName();
''