Answer Posted / 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 |
Post New Answer View All Answers
What are daemon Threads in java?
What is a ternary operator in java?
What is structure of java heap? What is perm gen space in heap?
Explain the importance of thread scheduler in java?
What is an interface in java?
How to implement an arraylist in java?
How can I right-justify a string?
Can a class extend 2 classes in java?
What is the final field modifier?
I want to control database connections in my program and want that only one thread should be able to make database connection at a time. How can I implement this logic?
How can we create an immutable class in java?
What is identifier give example?
Can we use string in the switch case?
This abstract class is correct ? abstract class A { public abstract void Disp(); public abstract void B() { } public absract virtual C() { } }
Tell me about different OOPS concepts.