RTC Java API 6.0.2 - Set component scoped FlowTarget for AcceptFlow direction only
I want to setup an AcceptFlow (Flow Direction: incoming only) FlowTarget as Component Scoped.
According to the JavaDoc, this should be done by doing this:
sourceFlowtable.addAcceptFlow(targetWorkspaceHandle, null, null, components, "Accept flow");
However, the created FlowTarget is not getting scoped, all components in the stream are flown in stead of only the components in components List.
If I add:
sourceFlowtable.setComponentScopes(targetWorkspaceHandle, components);
as suggested in this thread, the FlowTarget will become Scoped - But the Flow Direction will be destroyed, so that the Flow Direction is being Both instead of Incoming.
To me, it looks like a bug in sourceFlowtable.addAcceptFlow(...).
Am I missing something?
Kind regards
Steen Larsen