Remote Method Invocation [RMI]

« Back to Glossary Index

Description


In a distributed computing environment, remote method invocation (RMI) refers to calling a method on a remote object. It is analogous to a remote procedure call.

Remote Method Invocation (Wikipedia)

In a distributed computing environment, distributed object communication realizes communication between distributed objects. The main role is to allow objects to access data and invoke methods on remote objects (objects residing in non-local memory space). Invoking a method on a remote object is known as remote method invocation (RMI) or remote invocation, and is the object-oriented programming analog of a remote procedure call (RPC).

Synonyms:
Remote Invocation


« Back to Glossary Index