Uses of Interface
com.sun.corba.ee.spi.transport.connection.ContactInfo
-
Packages that use ContactInfo Package Description com.sun.corba.ee.impl.transport.connection com.sun.corba.ee.spi.transport.connection -
-
Uses of ContactInfo in com.sun.corba.ee.impl.transport.connection
Fields in com.sun.corba.ee.impl.transport.connection declared as ContactInfo Modifier and Type Field Description (package private) ContactInfo<C>
OutboundConnectionCacheImpl.ConnectionState. cinfo
(package private) ContactInfo<C>
OutboundConnectionState. cinfo
Fields in com.sun.corba.ee.impl.transport.connection with type parameters of type ContactInfo Modifier and Type Field Description private java.util.Map<ContactInfo<C>,OutboundCacheEntry<C>>
OutboundConnectionCacheBlockingImpl. entryMap
private java.util.concurrent.ConcurrentMap<ContactInfo<C>,OutboundConnectionCacheImpl.CacheEntry<C>>
OutboundConnectionCacheImpl. entryMap
Methods in com.sun.corba.ee.impl.transport.connection that return ContactInfo Modifier and Type Method Description private ContactInfo<C>
OutboundConnectionState. contactInfo()
Methods in com.sun.corba.ee.impl.transport.connection that return types with arguments of type ContactInfo Modifier and Type Method Description private java.util.Map<ContactInfo<C>,OutboundCacheEntry<C>>
OutboundConnectionCacheBlockingImpl. entryMap()
Methods in com.sun.corba.ee.impl.transport.connection with parameters of type ContactInfo Modifier and Type Method Description boolean
OutboundConnectionCacheBlockingImpl. canCreateNewConnection(ContactInfo<C> cinfo)
boolean
OutboundConnectionCacheImpl. canCreateNewConnection(ContactInfo<C> cinfo)
C
OutboundConnectionCacheBlockingImpl. get(ContactInfo<C> cinfo)
C
OutboundConnectionCacheBlockingImpl. get(ContactInfo<C> cinfo, ConnectionFinder<C> finder)
C
OutboundConnectionCacheImpl. get(ContactInfo<C> cinfo)
C
OutboundConnectionCacheImpl. get(ContactInfo<C> cinfo, ConnectionFinder<C> finder)
private OutboundConnectionState<C>
OutboundConnectionCacheBlockingImpl. getConnectionState(ContactInfo<C> cinfo, OutboundCacheEntry<C> entry, C conn)
private OutboundCacheEntry<C>
OutboundConnectionCacheBlockingImpl. getEntry(ContactInfo<C> cinfo)
private OutboundConnectionCacheImpl.CacheEntry<C>
OutboundConnectionCacheImpl. getEntry(ContactInfo<C> cinfo)
private C
OutboundConnectionCacheBlockingImpl. tryNewConnection(OutboundCacheEntry<C> entry, ContactInfo<C> cinfo)
Constructors in com.sun.corba.ee.impl.transport.connection with parameters of type ContactInfo Constructor Description ConnectionState(ContactInfo<C> cinfo, OutboundConnectionCacheImpl.CacheEntry<C> entry, C conn)
OutboundConnectionState(ContactInfo<C> cinfo, OutboundCacheEntry<C> entry, C conn)
-
Uses of ContactInfo in com.sun.corba.ee.spi.transport.connection
Methods in com.sun.corba.ee.spi.transport.connection with parameters of type ContactInfo Modifier and Type Method Description boolean
OutboundConnectionCache. canCreateNewConnection(ContactInfo<C> cinfo)
Determine whether a new connection could be created by the ConnectionCache or not.C
ConnectionFinder. find(ContactInfo<C> cinfo, java.util.Collection<C> idleConnections, java.util.Collection<C> busyConnections)
Method that searches idleConnections and busyConnections for the best connection.C
OutboundConnectionCache. get(ContactInfo<C> cinfo)
Behaves the same asOutboundConnectionCache.get(ContactInfo, ConnectionFinder)
except that no connection finder is provided, so that step is ignored.C
OutboundConnectionCache. get(ContactInfo<C> cinfo, ConnectionFinder<C> finder)
Return a Connection corresponding to the given ContactInfo.
-