Package org.springframework.erlang.connection

Examples of org.springframework.erlang.connection.Connection


  }

  public <T> T execute(ConnectionCallback<T> action) throws OtpException {

    Assert.notNull(action, "Callback object must not be null");
    Connection con = null;
    try {
      con = createConnection();
      return action.doInConnection(con);
    }
    catch (OtpException ex) {
View Full Code Here

TOP

Related Classes of org.springframework.erlang.connection.Connection

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.