What is lazy activation?

Answers were Sorted based on User's Feedback



What is lazy activation?..

Answer / sasirekha

Lazy activation of remote objects is implemented using a
faulting remote reference (sometimes referred to as a fault
block). A faulting remote reference to a remote object
"faults in" the active object's reference upon the first
method invocation to the object. Each faulting reference
maintains both a persistent handle (an activation
identifier) and a transient remote reference to the target
remote object. The remote object's activation identifier
contains enough information to engage a third party in
activating the object. The transient reference is the actual
"live" reference to the active remote object that can be
used to contact the executing object.

Is This Answer Correct ?    1 Yes 1 No

What is lazy activation?..

Answer / amar_java

Transformation from passive object into active object is
called Activation.Active Object directly associate with JVM,
which means class is loaded for that object and object
restoring its persistent state.

And Lazy activation defers activating an object until a
client's first use.

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Core Java Interview Questions

What is difference between “==” and equals()?

1 Answers   IBM,


how we can write the string concatenation program in java.

3 Answers  


Which is not Object in Java?

10 Answers   Honeywell,


how a programmer confirms that the data submitted has been succesfully inserted into the database(either oracle or my sql).. How a programmer confirm if there is any problem with the program he wrote for insertion... ANS:--- >executeupdate method is having boolean return type, if anything goes wrong in data insertion or data updation, it would return false. otherwise, if it successfully inserts data into the database, it would return true NOW HOW TO I CHECK IN MY DURING EXECUTION WHETHER IT RETURNS TRUE OR FALSE... WELL IT WILL DISPLAY ANY MESSAGE OR NOT

0 Answers   Google,


How do you implement tree mirroring in java?

0 Answers   EXL, HCL,






without using arthematic operation ,how can you write the logic for adding/substraction/multiplication?

7 Answers   Tanla Solutions, Wipro,


Is passing by reference faster?

0 Answers  


Are global variables initialized to zero?

0 Answers  


What is defined as false sharing in the context of multithreading?

0 Answers  


What are selection structures?

0 Answers  


What is the difference between length and length() method in java?

0 Answers  


What are the difference between composition and inheritance in java?

0 Answers  


Categories