当前位置: 首页>>代码示例>>Java>>正文


Java ConnectionEventListener类代码示例

本文整理汇总了Java中javax.resource.spi.ConnectionEventListener的典型用法代码示例。如果您正苦于以下问题:Java ConnectionEventListener类的具体用法?Java ConnectionEventListener怎么用?Java ConnectionEventListener使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


ConnectionEventListener类属于javax.resource.spi包,在下文中一共展示了ConnectionEventListener类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getNewPoolConnection

import javax.resource.spi.ConnectionEventListener; //导入依赖的package包/类
/**
 * Creates a new connection for the managed connection pool.
 * 
 * @return the managed connection from the EIS as ManagedConnection object.
 * @throws PoolException
 */
@Override
public Object getNewPoolConnection() throws PoolException {
  ManagedConnection manConn = null;
  try {
    manConn = connFactory.createManagedConnection(sub, connReqInfo);
  } catch (ResourceException rex) {
    rex.printStackTrace();
    throw new PoolException(
        LocalizedStrings.ManagedPoolCacheImpl_MANAGEDPOOLCACHEIMPLGETNEWCONNECTION_EXCEPTION_IN_CREATING_NEW_MANAGED_POOLEDCONNECTION
            .toLocalizedString(),
        rex);
  }
  manConn
      .addConnectionEventListener((javax.resource.spi.ConnectionEventListener) connEventListner);
  return manConn;
}
 
开发者ID:ampool,项目名称:monarch,代码行数:23,代码来源:ManagedPoolCacheImpl.java

示例2: destroyPooledConnection

import javax.resource.spi.ConnectionEventListener; //导入依赖的package包/类
/**
 * Destroys the underline physical connection to EIS.
 * 
 * @param connectionObject connection Object.
 */
@Override
void destroyPooledConnection(Object connectionObject) {
  try {
    ((ManagedConnection) connectionObject)
        .removeConnectionEventListener((ConnectionEventListener) connEventListner);
    ((ManagedConnection) connectionObject).destroy();
    connectionObject = null;
  } catch (ResourceException rex) {
    if (logger.isTraceEnabled()) {
      logger.trace(
          "ManagedPoolcacheImpl::destroyPooledConnection:Exception in closing the connection.Ignoring it. The exeption is {}",
          rex.getMessage(), rex);
    }
  }
}
 
开发者ID:ampool,项目名称:monarch,代码行数:21,代码来源:ManagedPoolCacheImpl.java

示例3: onError

import javax.resource.spi.ConnectionEventListener; //导入依赖的package包/类
private void onError(Exception e) {

    this.localTran = null;

    synchronized (this.connections) {
      Iterator<GFConnectionImpl> connsItr = this.connections.iterator();
      while (connsItr.hasNext()) {
        GFConnectionImpl conn = connsItr.next();
        conn.invalidate();
        synchronized (this.listeners) {
          Iterator<ConnectionEventListener> itr = this.listeners.iterator();
          ConnectionEvent ce =
              new ConnectionEvent(this, ConnectionEvent.CONNECTION_ERROR_OCCURRED, e);
          ce.setConnectionHandle(conn);
          while (itr.hasNext()) {
            itr.next().connectionErrorOccurred(ce);
          }
        }
        connsItr.remove();
      }
    }

  }
 
开发者ID:ampool,项目名称:monarch,代码行数:24,代码来源:JCAManagedConnection.java

示例4: onClose

import javax.resource.spi.ConnectionEventListener; //导入依赖的package包/类
public void onClose(GFConnectionImpl conn) throws ResourceException {
  conn.invalidate();
  this.connections.remove(conn);
  synchronized (this.listeners) {
    Iterator<ConnectionEventListener> itr = this.listeners.iterator();
    ConnectionEvent ce = new ConnectionEvent(this, ConnectionEvent.CONNECTION_CLOSED);
    ce.setConnectionHandle(conn);
    while (itr.hasNext()) {
      itr.next().connectionClosed(ce);
    }
  }
  if (this.connections.isEmpty()) {
    // safe to dissociate this managedconnection so that it can go to pool
    if (this.initDone && !this.cache.isClosed()) {
      this.localTran = new JCALocalTransaction(this.cache, this.gfTxMgr);
    } else {
      this.localTran = new JCALocalTransaction();
    }
  }

}
 
开发者ID:ampool,项目名称:monarch,代码行数:22,代码来源:JCAManagedConnection.java

示例5: destroyPooledConnection

import javax.resource.spi.ConnectionEventListener; //导入依赖的package包/类
/**
 * Destroys the underline physical connection to EIS.
 * 
 * @param connectionObject connection Object.
 */
@Override
void destroyPooledConnection(Object connectionObject) {
  try {
    ((ManagedConnection) connectionObject)
        .removeConnectionEventListener((ConnectionEventListener) connEventListner);
    ((ManagedConnection) connectionObject).destroy();
    connectionObject = null;
  }
  catch (ResourceException rex) {
    LogWriterI18n writer = TransactionUtils.getLogWriterI18n();
    if (writer.finerEnabled())
        writer
            .finer(
                "ManagedPoolcacheImpl::destroyPooledConnection:Exception in closing the connection.Ignoring it. The exeption is "
                    + rex.toString(), rex);
  }
}
 
开发者ID:gemxd,项目名称:gemfirexd-oss,代码行数:23,代码来源:ManagedPoolCacheImpl.java

示例6: onError

import javax.resource.spi.ConnectionEventListener; //导入依赖的package包/类
private void onError(Exception e)
{

  this.localTran = null;

  synchronized (this.connections) {
    Iterator<GFConnectionImpl> connsItr = this.connections.iterator();
    while (connsItr.hasNext()) {
      GFConnectionImpl conn = connsItr.next();
      conn.invalidate();
      synchronized (this.listeners) {
        Iterator<ConnectionEventListener> itr = this.listeners.iterator();
        ConnectionEvent ce = new ConnectionEvent(this,
            ConnectionEvent.CONNECTION_ERROR_OCCURRED, e);
        ce.setConnectionHandle(conn);
        while (itr.hasNext()) {
          itr.next().connectionErrorOccurred(ce);
        }
      }
      connsItr.remove();
    }
  }

}
 
开发者ID:gemxd,项目名称:gemfirexd-oss,代码行数:25,代码来源:JCAManagedConnection.java

示例7: onClose

import javax.resource.spi.ConnectionEventListener; //导入依赖的package包/类
public void onClose(GFConnectionImpl conn) throws ResourceException
{
  conn.invalidate();
  this.connections.remove(conn);
  synchronized (this.listeners) {
    Iterator<ConnectionEventListener> itr = this.listeners.iterator();
    ConnectionEvent ce = new ConnectionEvent(this,
        ConnectionEvent.CONNECTION_CLOSED);
    ce.setConnectionHandle(conn);
    while (itr.hasNext()) {
      itr.next().connectionClosed(ce);
    }
  }
  if (this.connections.isEmpty()) {
    // safe to dissociate this managedconnection so that it can go to pool
    if (this.initDone && !this.cache.isClosed()) {
      this.localTran = new JCALocalTransaction(this.cache, this.gfTxMgr);
    }
    else {
      this.localTran = new JCALocalTransaction();
    }
  }

}
 
开发者ID:gemxd,项目名称:gemfirexd-oss,代码行数:25,代码来源:JCAManagedConnection.java

示例8: connectionClosed

import javax.resource.spi.ConnectionEventListener; //导入依赖的package包/类
void connectionClosed(WrappedConnection wc) {
	
	synchronized (this.handles) {
		handles.remove(wc);
	}
	
	ConnectionEvent ce = new ConnectionEvent(this, ConnectionEvent.CONNECTION_CLOSED);
	ce.setConnectionHandle(wc);
	
	ArrayList<ConnectionEventListener> copy = null;
	synchronized (this.listeners) {
		copy = new ArrayList<ConnectionEventListener>(this.listeners);
	}
	
	for(ConnectionEventListener l: copy) {
		l.connectionClosed(ce);
	}
}
 
开发者ID:kenweezy,项目名称:teiid,代码行数:19,代码来源:BasicManagedConnection.java

示例9: sendConnectionEvent

import javax.resource.spi.ConnectionEventListener; //导入依赖的package包/类
protected void sendConnectionEvent(ConnectionEvent connEvent) {
for (int i = listeners.size() - 1; i >= 0; i--) {
    ConnectionEventListener listener =
	(ConnectionEventListener) listeners.get(i);
    if (connEvent.getId() == ConnectionEvent.CONNECTION_CLOSED) {
	listener.connectionClosed(connEvent);
    } else if (connEvent.getId() ==
	       ConnectionEvent.CONNECTION_ERROR_OCCURRED) {
	listener.connectionErrorOccurred(connEvent);
    } else if (connEvent.getId() ==
	       ConnectionEvent.LOCAL_TRANSACTION_STARTED) {
	listener.localTransactionStarted(connEvent);
    } else if (connEvent.getId() ==
	       ConnectionEvent.LOCAL_TRANSACTION_COMMITTED) {
	listener.localTransactionCommitted(connEvent);
    } else if (connEvent.getId() ==
	       ConnectionEvent.LOCAL_TRANSACTION_ROLLEDBACK) {
	listener.localTransactionRolledback(connEvent);
    }
}
   }
 
开发者ID:nologic,项目名称:nabs,代码行数:22,代码来源:JEManagedConnection.java

示例10: JEManagedConnection

import javax.resource.spi.ConnectionEventListener; //导入依赖的package包/类
JEManagedConnection(Subject subject, JERequestInfo jeInfo)
    throws ResourceException {

    try {
        savedTransConfig = jeInfo.getTransactionConfig();
        this.env = new XAEnvironment(jeInfo.getJERootDir(),
                                     jeInfo.getEnvConfig());
    } catch (DatabaseException DE) {
        throw new ResourceException(DE.toString());
    }
      listeners = new ArrayList<ConnectionEventListener>();
    savedLT = null;
    rwDatabaseHandleCache = new HashMap<String,Database>();
    roDatabaseHandleCache = new HashMap<String,Database>();
    rwSecondaryDatabaseHandleCache = new HashMap<String,Database>();
    roSecondaryDatabaseHandleCache = new HashMap<String,Database>();
}
 
开发者ID:prat0318,项目名称:dbms,代码行数:18,代码来源:JEManagedConnection.java

示例11: sendConnectionEvent

import javax.resource.spi.ConnectionEventListener; //导入依赖的package包/类
protected void sendConnectionEvent(ConnectionEvent connEvent) {
    for (int i = listeners.size() - 1; i >= 0; i--) {
        ConnectionEventListener listener =
            listeners.get(i);
        if (connEvent.getId() == ConnectionEvent.CONNECTION_CLOSED) {
            listener.connectionClosed(connEvent);
        } else if (connEvent.getId() ==
                   ConnectionEvent.CONNECTION_ERROR_OCCURRED) {
            listener.connectionErrorOccurred(connEvent);
        } else if (connEvent.getId() ==
                   ConnectionEvent.LOCAL_TRANSACTION_STARTED) {
            listener.localTransactionStarted(connEvent);
        } else if (connEvent.getId() ==
                   ConnectionEvent.LOCAL_TRANSACTION_COMMITTED) {
            listener.localTransactionCommitted(connEvent);
        } else if (connEvent.getId() ==
                   ConnectionEvent.LOCAL_TRANSACTION_ROLLEDBACK) {
            listener.localTransactionRolledback(connEvent);
        }
    }
}
 
开发者ID:prat0318,项目名称:dbms,代码行数:22,代码来源:JEManagedConnection.java

示例12: fireConnectionEvent

import javax.resource.spi.ConnectionEventListener; //导入依赖的package包/类
public void fireConnectionEvent(int event) {
	ConnectionEvent connnectionEvent = new ConnectionEvent(this, event);
	connnectionEvent.setConnectionHandle(this.remoteConnection);
	for (ConnectionEventListener listener : this.listeners) {
		switch (event) {
		case LOCAL_TRANSACTION_STARTED:
			listener.localTransactionStarted(connnectionEvent);
			break;
		case LOCAL_TRANSACTION_COMMITTED:
			listener.localTransactionCommitted(connnectionEvent);
			break;
		case LOCAL_TRANSACTION_ROLLEDBACK:
			listener.localTransactionRolledback(connnectionEvent);
			break;
		case CONNECTION_CLOSED:
			listener.connectionClosed(connnectionEvent);
			break;
		default:
			throw new IllegalArgumentException("Unknown event: " + event);
		}
	}
}
 
开发者ID:scheuchzer,项目名称:outbound-connector,代码行数:23,代码来源:GenericManagedConnection.java

示例13: LazyManagedConnection

import javax.resource.spi.ConnectionEventListener; //导入依赖的package包/类
/**
 * Default constructor
 * @param localTransaction Support local transaction
 * @param xaTransaction Support XA transaction
 * @param mcf The managed connection factory
 * @param cm The connection manager
 */
public LazyManagedConnection(boolean localTransaction, boolean xaTransaction,
                             LazyManagedConnectionFactory mcf, ConnectionManager cm)
{
   this.localTransaction = localTransaction;
   this.xaTransaction = xaTransaction;
   this.enlisted = false;
   this.mcf = mcf;
   this.cm = cm;
   this.logwriter = null;
   this.listeners = Collections.synchronizedList(new ArrayList<ConnectionEventListener>(1));
   this.connection = null;
   this.lazyLocalTransaction = null;
   this.lazyXAResource = null;

   if (localTransaction)
      this.lazyLocalTransaction = new LazyLocalTransaction(this);

   if (xaTransaction)
      this.lazyXAResource = new LazyXAResource(this);
}
 
开发者ID:ironjacamar,项目名称:ironjacamar,代码行数:28,代码来源:LazyManagedConnection.java

示例14: begin

import javax.resource.spi.ConnectionEventListener; //导入依赖的package包/类
/**
 * {@inheritDoc}
 */
public void begin() throws ResourceException
{
   if (txBeginDuration > 0)
   {
      try
      {
         Thread.sleep(txBeginDuration);
      }
      catch (Exception e)
      {
         // Ignore
      }
   }

   ConnectionEvent ce = new ConnectionEvent(this, ConnectionEvent.LOCAL_TRANSACTION_STARTED);
   
   for (ConnectionEventListener cel : listeners)
   {
      cel.localTransactionStarted(ce);
   }
}
 
开发者ID:ironjacamar,项目名称:ironjacamar,代码行数:25,代码来源:PerfManagedConnection.java

示例15: commit

import javax.resource.spi.ConnectionEventListener; //导入依赖的package包/类
/**
 * {@inheritDoc}
 */
public void commit() throws ResourceException
{
   if (txCommitDuration > 0)
   {
      try
      {
         Thread.sleep(txCommitDuration);
      }
      catch (Exception e)
      {
         // Ignore
      }
   }

   ConnectionEvent ce = new ConnectionEvent(this, ConnectionEvent.LOCAL_TRANSACTION_COMMITTED);
   
   for (ConnectionEventListener cel : listeners)
   {
      cel.localTransactionCommitted(ce);
   }
}
 
开发者ID:ironjacamar,项目名称:ironjacamar,代码行数:25,代码来源:PerfManagedConnection.java


注:本文中的javax.resource.spi.ConnectionEventListener类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。