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/pept/transport/ContactInfo.java
/* * Copyright (c) 2001, 2004, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.corba.se.pept.transport; import com.sun.corba.se.pept.broker.Broker; import com.sun.corba.se.pept.encoding.InputObject; import com.sun.corba.se.pept.encoding.OutputObject; import com.sun.corba.se.pept.protocol.MessageMediator; import com.sun.corba.se.pept.protocol.ClientRequestDispatcher; import com.sun.corba.se.pept.transport.ConnectionCache; /** * <p>The <b><em>primary</em></b> PEPt client-side plug-in point and enabler * for <b><em>altenate encodings, protocols and transports</em></b>.</p> * * <p><code>ContactInfo</code> is a <em>factory</em> for client-side * artifacts used * to construct and send a message (and possibly receive and process a * response).</p> * * @author Harold Carr */ public interface ContactInfo { /** * The {@link com.sun.corba.se.pept.broker.Broker Broker} associated * with an invocation. * * @return {@link com.sun.corba.se.pept.broker.Broker Broker} */ public Broker getBroker(); /** * The parent * {@link com.sun.corba.se.pept.broker.ContactInfoList ContactInfoList} * for this <code>ContactInfo</code>. * * @return * {@link com.sun.corba.se.pept.broker.ContactInfoList ContactInfoList} */ public ContactInfoList getContactInfoList(); /** * Used to get a * {@link com.sun.corba.se.pept.protocol.ClientRequestDispatcher * ClientRequestDispatcher} * used to handle the specific <em>protocol</em> represented by this * <code>ContactInfo</code>. * * @return * {@link com.sun.corba.se.pept.protocol.ClientRequestDispatcher * ClientRequestDispatcher} */ public ClientRequestDispatcher getClientRequestDispatcher(); /** * Used to determine if a * {@link com.sun.corba.se.pept.transport.Connection Connection} * will be present in an invocation. * * For example, it may be * <code>false</code> in the case of shared-memory * <code>Input/OutputObjects</code>. * * @return <code>true</code> if a * {@link com.sun.corba.se.pept.transport.Connection Connection} * will be used for an invocation. */ public boolean isConnectionBased(); /** * Used to determine if the * {@link com.sun.corba.se.pept.transport.Connection Connection} * used for a request should be cached. * * If <code>true</code> then PEPt will attempt to reuse an existing * {@link com.sun.corba.se.pept.transport.Connection Connection}. If * one is not found it will create a new one and cache it for future use. * * * @return <code>true</code> if * {@link com.sun.corba.se.pept.transport.Connection Connection}s * created by this <code>ContactInfo</code> should be cached. */ public boolean shouldCacheConnection(); /** * PEPt uses separate caches for each type of <code>ContactInfo</code> * as given by <code>getConnectionCacheType</code>. * * @return {@link java.lang.String} */ public String getConnectionCacheType(); /** * Set the * {@link com.sun.corba.se.pept.transport.Outbound.ConnectionCache OutboundConnectionCache} * to be used by this <code>ContactInfo</code>. * * PEPt uses separate caches for each type of <code>ContactInfo</code> * as given by {@link #getConnectionCacheType}. * {@link #setConnectionCache} and {@link #getConnectionCache} support * an optimzation to avoid hashing to find that cache. * * @param connectionCache. */ public void setConnectionCache(OutboundConnectionCache connectionCache); /** * Get the * {@link com.sun.corba.se.pept.transport.Outbound.ConnectionCache OutboundConnectionCache} * used by this <code>ContactInfo</code> * * PEPt uses separate caches for each type of <code>ContactInfo</code> * as given by {@link #getConnectionCacheType}. * {@link #setConnectionCache} and {@link #getConnectionCache} support * an optimzation to avoid hashing to find that cache. * * @return * {@link com.sun.corba.se.pept.transport.ConnectionCache ConnectionCache} */ public OutboundConnectionCache getConnectionCache(); /** * Used to get a * {@link com.sun.corba.se.pept.transport.Connection Connection} * to send and receive messages on the specific <em>transport</em> * represented by this <code>ContactInfo</code>. * * @return * {@link com.sun.corba.se.pept.transport.Connection Connection} */ public Connection createConnection(); /** * Used to get a * {@link com.sun.corba.se.pept.protocol.MessageMeidator MessageMediator} * to hold internal data for a message to be sent using the specific * encoding, protocol, transport combination represented by this * <code>ContactInfo</code>. * * @return * {@link com.sun.corba.se.pept.protocol.MessageMediator MessageMediator} */ public MessageMediator createMessageMediator(Broker broker, ContactInfo contactInfo, Connection connection, String methodName, boolean isOneWay); /** * Used to get a * {@link com.sun.corba.se.pept.protocol.MessageMeidator MessageMediator} * to hold internal data for a message received using the specific * encoding, protocol, transport combination represented by this * <code>ContactInfo</code>. * * @return * {@link com.sun.corba.se.pept.protocol.MessageMeidator MessageMediator} */ public MessageMediator createMessageMediator(Broker broker, Connection connection); /** * Used to finish creating a * {@link com.sun.corba.se.pept.protocol.MessageMeidator MessageMediator} * with internal data for a message received using the specific * encoding, protocol, transport combination represented by this * <code>ContactInfo</code>. * * @return * {@link com.sun.corba.se.pept.protocol.MessageMediator MessageMediator} */ public MessageMediator finishCreatingMessageMediator(Broker broker, Connection connection, MessageMediator messageMediator); /** * Used to get a * {@link com.sun.corba.se.pept.encoding.InputObject InputObject} * for the specific <em>encoding</em> represented by this * <code>ContactInfo</code>. * * @return * {@link com.sun.corba.se.pept.encoding.InputObject InputObject} */ public InputObject createInputObject(Broker broker, MessageMediator messageMediator); /** * Used to get a * {@link com.sun.corba.se.pept.encoding.OutputObject OutputObject} * for the specific <em>encoding</em> represented by this * <code>ContactInfo</code>. * * @return * {@link com.sun.corba.se.pept.encoding.OutputObject OutputObject} */ public OutputObject createOutputObject(MessageMediator messageMediator); /** * Used to lookup artifacts associated with this <code>ContactInfo</code>. * * @return the hash value. */ public int hashCode(); } // End of file.
⏎ com/sun/corba/se/pept/transport/ContactInfo.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, 326032👍, 3💬
Popular Posts:
maven-settings-builder-3 .8.6.jaris the JAR file for Apache Maven 3.8.6 Settings Builder module. Apa...
JRE 8 deploy.jar is the JAR file for JRE 8 Java Control Panel and other deploy tools. JRE (Java Runt...
How to compare performances of various XML parsers with the jaxp\SourceValidator.jav aprovided in th...
Provides support for the runtime platform, core utility methods and the extension registry. JAR File...
What Is log4j-1.2.13.jar? I got the JAR file from logging-log4j-1.2.13.zip .log4j-1.2.13.jar is the ...