jdk/src/share/classes/sun/rmi/transport/ObjectTable.java
changeset 21278 ef8a3a2a72f2
parent 14342 8435a30053c1
child 23010 6dadb192ad81
equal deleted inserted replaced
21277:bd380b80f9ea 21278:ef8a3a2a72f2
   221         target.markRemoved();   // handles decrementing keep-alive count
   221         target.markRemoved();   // handles decrementing keep-alive count
   222     }
   222     }
   223 
   223 
   224     /**
   224     /**
   225      * Process client VM signalling reference for given ObjID: forward to
   225      * Process client VM signalling reference for given ObjID: forward to
   226      * correspoding Target entry.  If ObjID is not found in table,
   226      * corresponding Target entry.  If ObjID is not found in table,
   227      * no action is taken.
   227      * no action is taken.
   228      */
   228      */
   229     static void referenced(ObjID id, long sequenceNum, VMID vmid) {
   229     static void referenced(ObjID id, long sequenceNum, VMID vmid) {
   230         synchronized (tableLock) {
   230         synchronized (tableLock) {
   231             ObjectEndpoint oe =
   231             ObjectEndpoint oe =
   237         }
   237         }
   238     }
   238     }
   239 
   239 
   240     /**
   240     /**
   241      * Process client VM dropping reference for given ObjID: forward to
   241      * Process client VM dropping reference for given ObjID: forward to
   242      * correspoding Target entry.  If ObjID is not found in table,
   242      * corresponding Target entry.  If ObjID is not found in table,
   243      * no action is taken.
   243      * no action is taken.
   244      */
   244      */
   245     static void unreferenced(ObjID id, long sequenceNum, VMID vmid,
   245     static void unreferenced(ObjID id, long sequenceNum, VMID vmid,
   246                              boolean strong)
   246                              boolean strong)
   247     {
   247     {