Package org.tarantool.test

Source Code of org.tarantool.test.TestConnectionFactory

package org.tarantool.test;

import org.tarantool.core.TarantoolConnection;
import org.tarantool.core.cmd.Transport;
import org.tarantool.core.impl.TarantoolConnectionImpl;
import org.tarantool.pool.SingleQueryConnectionFactory;

/**
* Connection factory for testing purposes
*/
public class TestConnectionFactory implements SingleQueryConnectionFactory {
  Transport transport;

  public TestConnectionFactory(Transport transport) {
    super();
    this.transport = transport;
  }

  @Override
  public TarantoolConnection getSingleQueryConnection() {
    return new TarantoolConnectionImpl(transport);
  }

}
TOP

Related Classes of org.tarantool.test.TestConnectionFactory

TOP
Copyright © 2018 www.massapi.com. 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.