Skip navigation links

Oracle® Fusion Middleware Java API Reference for Oracle Coherence
12c (12.1.3.0.0)

E47890-01


com.tangosol.coherence.transaction
Interface ConnectionFactory

All Known Implementing Classes:
DefaultConnectionFactory

public interface ConnectionFactory

A factory for connections to a Coherence data grid.

Since:
Coherence 3.6
Author:
tb 2009.05.19

Nested Class Summary
static interface ConnectionFactory.ConnectionSpec
          The connection spec is used to pass connection properties to connection factory during a connection request.

 

Method Summary
 Connection createConnection()
          Create a connection to a Coherence data grid.
 Connection createConnection(java.lang.ClassLoader loader)
          Create a connection to a Coherence data grid.
 Connection createConnection(ConnectionFactory.ConnectionSpec connectionSpec)
          Create a connection to a Coherence data grid using the specified connection specification.
 Connection createConnection(java.lang.String sServiceName)
          Create a connection to a Coherence data grid.
 Connection createConnection(java.lang.String sServiceName, java.lang.ClassLoader loader)
          Create a connection to a Coherence data grid.

 

Method Detail

createConnection

Connection createConnection()
Create a connection to a Coherence data grid. The returned connection is associated with a default cache service. All caches obtained through this connection will be associated with this default cache service.
Returns:
a connection to a Coherence data grid

createConnection

Connection createConnection(java.lang.String sServiceName)
Create a connection to a Coherence data grid. The returned connection is associated with a cache service specified by the given service name. All caches obtained through this connection will be associated with this cache service.
Parameters:
sServiceName - the name of the cache service to be associated with the connection; must be specified in a "transactional-scheme" configuration element
Returns:
a connection to a Coherence data grid

createConnection

Connection createConnection(java.lang.ClassLoader loader)
Create a connection to a Coherence data grid. The returned connection is associated with a default cache service. All caches obtained through this connection will be associated with this default cache service.
Parameters:
loader - class loader that should be used to configure the connection
Returns:
a connection to a Coherence data grid

createConnection

Connection createConnection(java.lang.String sServiceName,
                            java.lang.ClassLoader loader)
Create a connection to a Coherence data grid. The returned connection is associated with a cache service specified by the given service name. All caches obtained through this connection will be associated with this cache service.
Parameters:
sServiceName - the name of the cache service to be associated with the connection; must be specified in a "transactional-scheme" configuration element
loader - class loader that should be used to configure the connection
Returns:
a connection to a Coherence data grid

createConnection

Connection createConnection(ConnectionFactory.ConnectionSpec connectionSpec)
Create a connection to a Coherence data grid using the specified connection specification. The returned connection is associated with a cache service specified by the service name in the given connection specification. All caches obtained through this connection will be associated with this cache service.
Parameters:
connectionSpec - the connection specification
Returns:
a connection to a Coherence data grid

Skip navigation links

Oracle® Fusion Middleware Java API Reference for Oracle Coherence
12c (12.1.3.0.0)

E47890-01


Copyright © 2000, 2014, Oracle and/or its affiliates. All rights reserved.