2
|
1 |
<!--
|
5506
|
2 |
Copyright (c) 1998, Oracle and/or its affiliates. All rights reserved.
|
2
|
3 |
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
4 |
|
|
5 |
This code is free software; you can redistribute it and/or modify it
|
|
6 |
under the terms of the GNU General Public License version 2 only, as
|
5506
|
7 |
published by the Free Software Foundation. Oracle designates this
|
2
|
8 |
particular file as subject to the "Classpath" exception as provided
|
5506
|
9 |
by Oracle in the LICENSE file that accompanied this code.
|
2
|
10 |
|
|
11 |
This code is distributed in the hope that it will be useful, but WITHOUT
|
|
12 |
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
13 |
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
14 |
version 2 for more details (a copy is included in the LICENSE file that
|
|
15 |
accompanied this code).
|
|
16 |
|
|
17 |
You should have received a copy of the GNU General Public License version
|
|
18 |
2 along with this work; if not, write to the Free Software Foundation,
|
|
19 |
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
20 |
|
5506
|
21 |
Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
22 |
or visit www.oracle.com if you need additional information or have any
|
|
23 |
questions.
|
2
|
24 |
-->
|
|
25 |
|
|
26 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
|
27 |
<html>
|
|
28 |
<body bgcolor="white">
|
|
29 |
|
|
30 |
Provides the RMI package. RMI is Remote Method Invocation. It is a
|
|
31 |
mechanism that enables an object on one Java virtual machine to invoke
|
|
32 |
methods on an object in another Java virtual machine. Any object that
|
|
33 |
can be invoked this way must implement the Remote interface. When such
|
|
34 |
an object is invoked, its arguments are ``marshalled'' and sent from the
|
|
35 |
local virtual machine to the remote one, where the arguments are
|
|
36 |
``unmarshalled.'' When the method terminates, the results are
|
|
37 |
marshalled from the remote machine and sent to the caller's virtual
|
|
38 |
machine. If the method invocation results in an exception being
|
|
39 |
thrown, the exception is indicated to caller.
|
|
40 |
|
|
41 |
<!--
|
|
42 |
<h2>Package Specification</h2>
|
|
43 |
|
|
44 |
##### FILL IN ANY SPECS NEEDED BY JAVA COMPATIBILITY KIT #####
|
|
45 |
<ul>
|
|
46 |
<li><a href="">##### REFER TO ANY FRAMEMAKER SPECIFICATION HERE #####</a>
|
|
47 |
</ul>
|
|
48 |
|
|
49 |
<h2>Related Documentation</h2>
|
|
50 |
|
|
51 |
For overviews, tutorials, examples, guides, and tool documentation, please see:
|
|
52 |
<ul>
|
|
53 |
<li><a href="">##### REFER TO NON-SPEC DOCUMENTATION HERE #####</a>
|
|
54 |
</ul>
|
|
55 |
-->
|
|
56 |
|
|
57 |
@since JDK1.1
|
|
58 |
</body>
|
|
59 |
</html>
|