How do you accept change sets into the local (filesystem) workspace using the Java API?
![]()
William Weddendorf (11●1●1)
| asked Mar 20 '13, 11:24 a.m.
edited Jun 03 '16, 5:36 p.m. by David Lafreniere (4.8k●7)
I'm using RTC 3.0.1 and the Java APIs. I've traversed them to the point that I can identify all incoming change sets (the basic flow, for others who are interested, is to search for a named workspace using workspace manager; then get the use the IFlowTable to get the current accept flow; then compare these two IWorkspaceConnection objects to produce an IChangeHistorySyncReport).
I can even accept these incoming change sets using IWorkspaceConnection.accept. However, I need to be able to update the local filesystem with these change sets as well. So I need to be able to take these incoming change sets and update the workspace on my computer's local filesystem with them. Does anyone know how I can do so? |