Changes between Version 11 and Version 12 of sqsync


Ignore:
Timestamp:
11/30/2010 09:20:40 PM (13 years ago)
Author:
tim.felgentreff
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • sqsync

    v11 v12  
    7373''Do not use lazy initialization.''
    7474
    75 Make use of the `#initialize` method in each class to set the initial values. Otherwise each getter will be recognized as changing the model due to instance variable setting and therefore will be replicated.
     75Make use of the `#initialize` method in each model to set initial values. Failure to do so will result in each setter being recognized as changing the model and those changes will be replicated to other clients.
    7676
    7777{{{
     
    9292''Force method replication of `non-SqSync` objects with <replicate> pragma.''
    9393
    94 If you use other objects than in your domain model, you need to tell `SqSync` explicitely which method call results in an object change and therefore needs to be replicated.
     94If you use other objects apart from your domain models in your application, you will need to tell `SqSync` explicitely which method call results in an object change and therefore needs to be replicated.
    9595
    9696{{{
     
    201201== Weak References ==
    202202
    203 To allow shared objects being garbage collected, clients only keep references to objects that are reachable from the ''root object''. You should never do this:
     203To allow garbage collection of shared objects, clients need to refrain from keeping strong references to objects that are reachable from the ''root object''. You should never do this:
    204204
    205205{{{