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 procedure overloading?

0 Answers  


Write a java program to find the route that connects between Red and Green Cells. General Rules for traversal 1. You can traverse from one cell to another vertically, horizontally or diagonally. 2. You cannot traverse through Black cells. 3. There should be only one Red and Green cell and at least one of each should be present. Otherwise the array is invalid. 4. You cannot revisit a cell that you have already traversed. 5. The maze need not be in the same as given in the above example

0 Answers  


What are the advantages of exception handling in java?

0 Answers  


How can we pass argument to a function by reference instead of pass by value?

0 Answers  


Do loops java?

0 Answers  






Hi Friends, I am beginner in java. what i know about synchonized keyword is,If more that one 1 thread tries to access a particular resource we can lock the method using synchronized keyword. Then after that how the lock is released and how next thread access that.Please explain with example.

5 Answers  


What does @param args mean in java?

0 Answers  


What is a compilation unit?

2 Answers  


What will be the output of round(3.7) and ceil(3.7)?

0 Answers  


how can i kill thread without stop() and destroy()

1 Answers  


What is meant by final class?

0 Answers  


What do you mean by exception handling in Java?

0 Answers   Atos Origin,


Categories