Searched refs:UID (Results 1 - 9 of 9) sorted by relevance
/openjdk7/jdk/src/share/classes/java/rmi/server/ |
H A D | UID.java | 34 * A <code>UID</code> represents an identifier that is unique over time 38 * <p>The {@link #UID()} constructor can be used to generate an 40 * generated on. The {@link #UID(short)} constructor can be used to 43 * <p>A <code>UID</code> instance contains three primitive values: 46 * the VM that this <code>UID</code> was generated in, with respect to its 50 * or zero for a well-known <code>UID</code> 53 * <code>UID</code> was generated in was alive, 54 * or zero for a well-known <code>UID</code> 56 * <code>UID</code>s generated in the same VM with the same 60 * <p>An independently generated <code>UID</cod 71 public final class UID implements Serializable { class in inherits:Serializable 108 public UID() { method in class:UID 156 public UID(short num) { method in class:UID 165 private UID(int unique, long time, short count) { method in class:UID [all...] |
H A D | ObjID.java | 54 * {@link UID}). In a unique <code>ObjID</code>, the address space 57 * equivalent to one returned by invoking the {@link UID#UID(short)} 88 private static final UID mySpace = new UID(); 100 private final UID space; 113 * If generating random object numbers, create a new UID to 114 * ensure uniqueness; otherwise, use a shared UID because 118 space = new UID(); 136 space = new UID((shor [all...] |
/openjdk7/jdk/src/share/classes/java/rmi/activation/ |
H A D | ActivationGroupID.java | 28 import java.rmi.server.UID; 57 private UID uid = new UID();
|
H A D | ActivationID.java | 42 import java.rmi.server.UID; 53 * <li> a unique identifier (a {@link java.rmi.server.UID UID} 79 private transient UID uid = new UID(); 168 * (a {@link java.rmi.server.UID UID} instance) as the argument. 182 * <code>java.rmi.server.UID</code> (written with 236 * (a {@link java.rmi.server.UID UID} instanc [all...] |
/openjdk7/jdk/src/share/classes/sun/rmi/transport/ |
H A D | ConnectionOutputStream.java | 29 import java.rmi.server.UID; 46 private final UID ackID; 65 ackID = resultStream ? new UID() : null;
|
H A D | DGCAckHandler.java | 28 import java.rmi.server.UID; 57 * parts of the result of a remote invocation, a UID is included as 59 * "DGCAck" message containing that UID. 77 private static final Map<UID,DGCAckHandler> idTable = 78 Collections.synchronizedMap(new HashMap<UID,DGCAckHandler>()); 80 private final UID id; 85 * Creates a new DGCAckHandler, associated with the specified UID 92 * "received" method with the specified UID is equivalent to 95 DGCAckHandler(UID id) { 139 * Causes the DGCAckHandler associated with the specified UID t [all...] |
H A D | ConnectionInputStream.java | 30 import java.rmi.server.UID; 49 private UID ackID; 60 ackID = UID.read((DataInput) this); 131 ackID = new UID();
|
/openjdk7/jdk/src/share/classes/java/rmi/dgc/ |
H A D | VMID.java | 28 import java.rmi.server.UID; 51 private UID uid; 68 * the class <code>java.rmi.server.UID</code> are satisfied, and b) an 74 uid = new UID();
|
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/ |
H A D | TCPTransport.java | 49 import java.rmi.server.UID; 569 DGCAckHandler.received(UID.read(in));
|
Completed in 28 milliseconds