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:
JRE 8 rt.jar - com.* Package Source Code
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime environment included in JDK 8. JRE 8 rt.jar libraries are divided into 6 packages:
com.* - Internal Oracle and Sun Microsystems libraries java.* - Standard Java API libraries. javax.* - Extended Java API libraries. jdk.* - JDK supporting libraries. org.* - Third party libraries. sun.* - Old libraries developed by Sun Microsystems.
JAR File Information:
Directory of C:\fyicenter\jdk-1.8.0_191\jre\lib 63,596,151 rt.jar
Here is the list of Java classes of the com.* package in JRE 1.8.0_191 rt.jar. Java source codes are also provided.
✍: FYIcenter
⏎ com/sun/corba/se/impl/transport/CorbaConnectionCacheBase.java
/* * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.corba.se.impl.transport; import java.util.Collection; import java.util.Iterator; import com.sun.corba.se.pept.broker.Broker; import com.sun.corba.se.pept.transport.Connection; import com.sun.corba.se.pept.transport.ConnectionCache; import com.sun.corba.se.spi.logging.CORBALogDomains; import com.sun.corba.se.spi.orb.ORB; import com.sun.corba.se.spi.transport.CorbaConnection; import com.sun.corba.se.spi.transport.CorbaConnectionCache; import com.sun.corba.se.impl.logging.ORBUtilSystemException; import com.sun.corba.se.impl.orbutil.ORBUtility; /** * @author Harold Carr */ public abstract class CorbaConnectionCacheBase implements ConnectionCache, CorbaConnectionCache { protected ORB orb; protected long timestamp = 0; protected String cacheType; protected String monitoringName; protected ORBUtilSystemException wrapper; protected CorbaConnectionCacheBase(ORB orb, String cacheType, String monitoringName) { this.orb = orb; this.cacheType = cacheType; this.monitoringName = monitoringName; wrapper =ORBUtilSystemException.get(orb,CORBALogDomains.RPC_TRANSPORT); registerWithMonitoring(); dprintCreation(); } //////////////////////////////////////////////////// // // pept.transport.ConnectionCache // public String getCacheType() { return cacheType; } public synchronized void stampTime(Connection c) { // _REVISIT_ Need to worry about wrap around some day c.setTimeStamp(timestamp++); } public long numberOfConnections() { synchronized (backingStore()) { return values().size(); } } public void close() { synchronized (backingStore()) { for (Object obj : values()) { ((CorbaConnection)obj).closeConnectionResources() ; } } } public long numberOfIdleConnections() { long count = 0; synchronized (backingStore()) { Iterator connections = values().iterator(); while (connections.hasNext()) { if (! ((Connection)connections.next()).isBusy()) { count++; } } } return count; } public long numberOfBusyConnections() { long count = 0; synchronized (backingStore()) { Iterator connections = values().iterator(); while (connections.hasNext()) { if (((Connection)connections.next()).isBusy()) { count++; } } } return count; } /** * Discarding least recently used Connections that are not busy * * This method must be synchronized since one WorkerThread could * be reclaming connections inside the synchronized backingStore * block and a second WorkerThread (or a SelectorThread) could have * already executed the if (numberOfConnections <= .... ). As a * result the second thread would also attempt to reclaim connections. * * If connection reclamation becomes a performance issue, the connection * reclamation could make its own task and consequently executed in * a separate thread. * Currently, the accept & reclaim are done in the same thread, WorkerThread * by default. It could be changed such that the SelectorThread would do * it for SocketChannels and WorkerThreads for Sockets by updating the * ParserTable. */ synchronized public boolean reclaim() { try { long numberOfConnections = numberOfConnections(); if (orb.transportDebugFlag) { dprint(".reclaim->: " + numberOfConnections + " (" + orb.getORBData().getHighWaterMark() + "/" + orb.getORBData().getLowWaterMark() + "/" + orb.getORBData().getNumberToReclaim() + ")"); } if (numberOfConnections <= orb.getORBData().getHighWaterMark() || numberOfConnections < orb.getORBData().getLowWaterMark()) { return false; } Object backingStore = backingStore(); synchronized (backingStore) { // REVISIT - A less expensive alternative connection reclaiming // algorithm could be investigated. for (int i=0; i < orb.getORBData().getNumberToReclaim(); i++) { Connection toClose = null; long lru = java.lang.Long.MAX_VALUE; Iterator iterator = values().iterator(); // Find least recently used and not busy connection in cache while ( iterator.hasNext() ) { Connection c = (Connection) iterator.next(); if ( !c.isBusy() && c.getTimeStamp() < lru ) { toClose = c; lru = c.getTimeStamp(); } } if ( toClose == null ) { return false; } try { if (orb.transportDebugFlag) { dprint(".reclaim: closing: " + toClose); } toClose.close(); } catch (Exception ex) { // REVISIT - log } } if (orb.transportDebugFlag) { dprint(".reclaim: connections reclaimed (" + (numberOfConnections - numberOfConnections()) + ")"); } } // XXX is necessary to do a GC to reclaim // closed network connections ?? // java.lang.System.gc(); return true; } finally { if (orb.transportDebugFlag) { dprint(".reclaim<-: " + numberOfConnections()); } } } //////////////////////////////////////////////////// // // spi.transport.ConnectionCache // public String getMonitoringName() { return monitoringName; } //////////////////////////////////////////////////// // // Implementation // // This is public so folb.Server test can access it. public abstract Collection values(); protected abstract Object backingStore(); protected abstract void registerWithMonitoring(); protected void dprintCreation() { if (orb.transportDebugFlag) { dprint(".constructor: cacheType: " + getCacheType() + " monitoringName: " + getMonitoringName()); } } protected void dprintStatistics() { if (orb.transportDebugFlag) { dprint(".stats: " + numberOfConnections() + "/total " + numberOfBusyConnections() + "/busy " + numberOfIdleConnections() + "/idle" + " (" + orb.getORBData().getHighWaterMark() + "/" + orb.getORBData().getLowWaterMark() + "/" + orb.getORBData().getNumberToReclaim() + ")"); } } protected void dprint(String msg) { ORBUtility.dprint("CorbaConnectionCacheBase", msg); } } // End of file.
⏎ com/sun/corba/se/impl/transport/CorbaConnectionCacheBase.java
Or download all of them as a single archive file:
File name: jre-rt-com-1.8.0_191-src.zip File size: 8099783 bytes Release date: 2018-10-28 Download
⇒ Backup JDK 8 Installation Directory
2023-02-07, 317008👍, 3💬
Popular Posts:
layout.jar is a component in iText Java library to provide layout functionalities. iText Java librar...
What Is activation.jar? I heard it's related to JAF (JavaBeans Activation Framework) 1.0.2? The if y...
How to display types defined in an XML Schema file with the xs\QueryXS.java provided in the Apache X...
JDK 17 java.management.jmod is the JMOD file for JDK 17 Management module. JDK 17 Management module ...
JUnit Source Code Files are provided in the source package file, junit-4.13.2-sources.jar .You can b...