Package com.github.youtube.vitess.jdbc.bson.VtoccBsonBlockingRpcChannel

Examples of com.github.youtube.vitess.jdbc.bson.VtoccBsonBlockingRpcChannel.Factory


   * Example: {@code -DvtoccServerSpec=localhost:1610}
   */
  @Test
  @Ignore
  public void testWithParentServer() throws Exception {
    Factory channelFactory = Guice.createInjector().getInstance(Factory.class);

    VtoccBsonBlockingRpcChannel channel =
        channelFactory.create(System.getProperty("vtoccServerSpec"));

    Message response = channel.callBlockingMethod("GetSessionId",
        SessionParams.newBuilder().setKeyspace("test_keyspace").setShard("0").build());

    assertNotNull(response);
View Full Code Here

TOP

Related Classes of com.github.youtube.vitess.jdbc.bson.VtoccBsonBlockingRpcChannel.Factory

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.