Changes between Version 3 and Version 4 of JavaParty/ObjectMigration


Ignore:
Timestamp:
01/17/07 10:52:54 (6 years ago)
Author:
huetter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • JavaParty/ObjectMigration

    v3 v4  
    88}}} 
    99 
    10 Please also have a look at the JavaParty API documentation. 
     10Please also have a look at the [wiki:JavaParty/API JavaParty API documentation]. 
    1111 
    1212All remote objects can migrate, except those with methods that are currently being executed, and those whose classes are declared resident. A class is declared resident by implementing the interface jp.lang.Resident. In the following code example, class R is declared resident: 
     
    2121As you would expect form interface inheritance, the resident property is inherited by all subclasses and can not be revoked. 
    2222 
    23 Migration enabling an object has some overhead for each method call on that object. Declaring classes resident which objects need no migration can safes this overhead and increase the performance of your application.  
     23Migration enabling an object has some overhead for each method call on that object. Declaring classes resident which objects need no migration can safes this overhead and increase the performance of your application.