How to get Components from the rtc stream
I am developing a rtc utility project which my eclipse plugins are going to consume.
As a part of it i am creating several rtc interfaces (inprogress), and current i am struck with one util.
Given the Stream name, how can i get the component inside that. i tried to use the IComponentSearchCriteria to get it, but it asking for either partial or exact name to get the component. but my util will know only the stream and project area. its job is to get components from the stream
So anything that filters my search to a particular Stream will help.
Any thought or help on this please.
Accepted answer
https://rsjazz.wordpress.com/2013/09/24/managing-workspaces-streams-and-components-using-the-plain-java-client-libraries/
2 other answers
IFlowNodeConnection.IComponentAdditionOp addComponent(IComponentHandle comp, IConnection seed, boolean produceDetailedUpdated)
where the seed can be the input stream where your targetted baseline is present.
Could any one you please suggest how to copy paste the component from one stream another using java api.
By copy paste i mean, the component1 with baseline x, which i pick from stream 1, should be placed as such to Stream 2. But i am always getting the Initial baseline (ie. baseline 1) of that component created in stream 2.
your suggestion will be most helpful for me.