SimplifiedLogic / creoson

OpenSource Automation using JSON Transactions for PTC's CREO Parametric
http://www.creoson.com
MIT License
79 stars 23 forks source link

Concurrent sessions | How to #110

Open nirav-98 opened 5 months ago

nirav-98 commented 5 months ago

I'm able to create sessions with multiple clients, but I don't think they are independent of each other. i.e. I create a session S1, & open file a1.prt, & create session S2, & open file a1.prt (with different content). The file a1.prt remains only one for creo. i.e. in both sessions, I won't get different parameter list, params = c.parameterlist(file=a1.prt), for both sessions, it'll be same. & in function c.parameter_list, there's no param to pass full path, or directory. Is there any way I can achieve concurrency with isolation? Thank you!