Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 17 java.rmi.jmod - RMI Module
JDK 17 java.rmi.jmod is the JMOD file for JDK 17 RMI (Remote Method Invocation) module.
JDK 17 RMI module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\java.rmi.jmod.
JDK 17 RMI module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 RMI module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\java.rmi.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ java/rmi/dgc/VMID.java
/* * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.rmi.dgc; import java.rmi.server.UID; import java.security.SecureRandom; /** * A VMID is a identifier that is unique across all Java virtual * machines. VMIDs are used by the distributed garbage collector * to identify client VMs. * * @author Ann Wollrath * @author Peter Jones */ public final class VMID implements java.io.Serializable { /** Array of bytes uniquely identifying this host */ private static final byte[] randomBytes; /** * @serial array of bytes uniquely identifying host created on */ private byte[] addr; /** * @serial unique identifier with respect to host created on */ private UID uid; /** indicate compatibility with JDK 1.1.x version of class */ private static final long serialVersionUID = -538642295484486218L; static { // Generate 8 bytes of random data. SecureRandom secureRandom = new SecureRandom(); byte bytes[] = new byte[8]; secureRandom.nextBytes(bytes); randomBytes = bytes; } /** * Create a new VMID. Each new VMID returned from this constructor * is unique for all Java virtual machines under the following * conditions: a) the conditions for uniqueness for objects of * the class <code>java.rmi.server.UID</code> are satisfied, and b) an * address can be obtained for this host that is unique and constant * for the lifetime of this object. */ public VMID() { addr = randomBytes; uid = new UID(); } /** * Return true if an accurate address can be determined for this * host. If false, reliable VMID cannot be generated from this host * @return true if host address can be determined, false otherwise * @deprecated */ @Deprecated public static boolean isUnique() { return true; } /** * Compute hash code for this VMID. */ public int hashCode() { return uid.hashCode(); } /** * Compare this VMID to another, and return true if they are the * same identifier. */ public boolean equals(Object obj) { if (obj instanceof VMID) { VMID vmid = (VMID) obj; if (!uid.equals(vmid.uid)) return false; if ((addr == null) ^ (vmid.addr == null)) return false; if (addr != null) { if (addr.length != vmid.addr.length) return false; for (int i = 0; i < addr.length; ++ i) if (addr[i] != vmid.addr[i]) return false; } return true; } else { return false; } } /** * Return string representation of this VMID. */ public String toString() { StringBuilder sb = new StringBuilder(); if (addr != null) for (int i = 0; i < addr.length; ++ i) { int x = addr[i] & 0xFF; sb.append((x < 0x10 ? "0" : "") + Integer.toString(x, 16)); } sb.append(':'); sb.append(uid.toString()); return sb.toString(); } }
⏎ java/rmi/dgc/VMID.java
Or download all of them as a single archive file:
File name: java.rmi-17.0.5-src.zip File size: 220001 bytes Release date: 2022-09-13 Download
⇒ JDK 17 java.scripting.jmod - Scripting Module
2023-11-06, 9937👍, 0💬
Popular Posts:
The Apache FontBox library is an open source Java tool to obtain low level information from font fil...
How to download and install ojdbc7.jar for Oracle 12c R1? ojdbc8.jar for Oracle 12c R1 is a Java 7 a...
JDK 11 jdk.charsets.jmod is the JMOD file for JDK 11 Charsets module. JDK 11 Charsets module compile...
How to show the XML parsing flow with sax\DocumentTracer.java provided in the Apache Xerces package?...
JDK 11 jdk.rmic.jmod is the JMOD file for JDK 11 RMI (Remote Method Invocation) Compiler Tool tool, ...