Remote Method Invocation - Definition. Was ist Remote Method Invocation
Diclib.com
Wörterbuch ChatGPT
Geben Sie ein Wort oder eine Phrase in einer beliebigen Sprache ein 👆
Sprache:

Übersetzung und Analyse von Wörtern durch künstliche Intelligenz ChatGPT

Auf dieser Seite erhalten Sie eine detaillierte Analyse eines Wortes oder einer Phrase mithilfe der besten heute verfügbaren Technologie der künstlichen Intelligenz:

  • wie das Wort verwendet wird
  • Häufigkeit der Nutzung
  • es wird häufiger in mündlicher oder schriftlicher Rede verwendet
  • Wortübersetzungsoptionen
  • Anwendungsbeispiele (mehrere Phrasen mit Übersetzung)
  • Etymologie

Was (wer) ist Remote Method Invocation - definition

MECHANISM TO ALLOW SOFTWARE TO EXECUTE A REMOTE PROCEDURE
Remote Procedure Call; Remote procedure calls; Remoting; Remote method call; List of RPC implementations

Remote Method Invocation         
Remote invocation; Remote Method Invocation; Class stub; Remote method invocation
<programming> (RMI) Part of the Java programming language library which enables a Java program running on one computer to access the objects and methods of another Java program running on a different computer. {Home (http://java.sun.com/products/jdk/1.1/docs/guide/rmi/index.html)}. (1997-09-04)
Distributed object communication         
Remote invocation; Remote Method Invocation; Class stub; Remote method invocation
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).
remote sensing         
  • date=10 August 2021 }} ''NASA Earth Expeditions'', 15 August 2018.</ref>}}
  • MLW]] in the north.
  • Illustration of remote sensing
ACQUISITION OF INFORMATION ABOUT AN OBJECT OR PHENOMENON WITHOUT MAKING PHYSICAL CONTACT WITH THE OBJECT, ESPECIALLY THE EARTH
Remote Sensing; Remote sensor; Earth remote sensing; Passive remote sensing; Remote-sensing; Infrared remote sensing; Remote-Sensing Image; Remote sensing satellites; History of remote sensing; Acoustic remote sensing; Remote sensing technology; Applications of remote sensing; Active remote sensing
¦ noun the scanning of the earth by satellite or high-flying aircraft in order to obtain information about it.

Wikipedia

Remote procedure call

In distributed computing, a remote procedure call (RPC) is when a computer program causes a procedure (subroutine) to execute in a different address space (commonly on another computer on a shared network), which is written as if it were a normal (local) procedure call, without the programmer explicitly writing the details for the remote interaction. That is, the programmer writes essentially the same code whether the subroutine is local to the executing program, or remote. This is a form of client–server interaction (caller is client, executor is server), typically implemented via a request–response message-passing system. In the object-oriented programming paradigm, RPCs are represented by remote method invocation (RMI). The RPC model implies a level of location transparency, namely that calling procedures are largely the same whether they are local or remote, but usually, they are not identical, so local calls can be distinguished from remote calls. Remote calls are usually orders of magnitude slower and less reliable than local calls, so distinguishing them is important.

RPCs are a form of inter-process communication (IPC), in that different processes have different address spaces: if on the same host machine, they have distinct virtual address spaces, even though the physical address space is the same; while if they are on different hosts, the physical address space is different. Many different (often incompatible) technologies have been used to implement the concept.