Re: [Pharo-users] Seamless - send collections by value

2017-07-15 Thread Petr Fischer
Thanks for all advices/options Denis. I will play with them. pf > Hi Petr. > > There are few solutions to your problem. > > 1) You can specify #value strategy for any collections for your network > instance: > > > network transferByValue: (Kind of: Collection) > > For your example you need

Re: [Pharo-users] Seamless - send collections by value

2017-07-15 Thread Denis Kudriashov
Also try SeamlessLogger to profile remote communication: SeamlessLogger startAfresh All remote messages will be written into transcript. And you can analyze full statistics: SeamlessLogger collectStatistics inspect. 2017-07-14 14:04 GMT+02:00 Denis Kudriashov : > Hi Petr. > > There are few

Re: [Pharo-users] Seamless - send collections by value

2017-07-14 Thread Denis Kudriashov
Hi Petr. There are few solutions to your problem. 1) You can specify #value strategy for any collections for your network instance: network transferByValue: (Kind of: Collection) For your example you need to apply this strategy on server side. In that case client will continue send collections

[Pharo-users] Seamless - send collections by value

2017-07-13 Thread Petr Fischer
Hello, I am testing Seamless project (https://github.com/dionisiydk/Seamless) but I did not understand one thing: I have (for example) a Person class in my server and client image. Person class implements: Person>>sseamlessDefaultTransferStrategy ^SeamlessTransferStrategy defaultByValue