Java 类org.apache.hadoop.hbase.coprocessor.protobuf.generated.PingProtos 实例源码

项目:ditb    文件:TestServerCustomProtocol.java   
private Map<byte [], String> hello(final Table table, final String send, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class,
      start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          BlockingRpcCallback<PingProtos.HelloResponse> rpcCallback =
            new BlockingRpcCallback<PingProtos.HelloResponse>();
          PingProtos.HelloRequest.Builder builder = PingProtos.HelloRequest.newBuilder();
          if (send != null) builder.setName(send);
          instance.hello(null, builder.build(), rpcCallback);
          PingProtos.HelloResponse r = rpcCallback.get();
          return r != null && r.hasResponse()? r.getResponse(): null;
        }
      });
}
项目:ditb    文件:TestServerCustomProtocol.java   
private Map<byte [], String> compoundOfHelloAndPing(final Table table, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class,
      start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          BlockingRpcCallback<PingProtos.HelloResponse> rpcCallback =
            new BlockingRpcCallback<PingProtos.HelloResponse>();
          PingProtos.HelloRequest.Builder builder = PingProtos.HelloRequest.newBuilder();
          // Call ping on same instance.  Use result calling hello on same instance.
          builder.setName(doPing(instance));
          instance.hello(null, builder.build(), rpcCallback);
          PingProtos.HelloResponse r = rpcCallback.get();
          return r != null && r.hasResponse()? r.getResponse(): null;
        }
      });
}
项目:ditb    文件:TestServerCustomProtocol.java   
private Map<byte [], String> noop(final Table table, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class, start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          BlockingRpcCallback<PingProtos.NoopResponse> rpcCallback =
            new BlockingRpcCallback<PingProtos.NoopResponse>();
          PingProtos.NoopRequest.Builder builder = PingProtos.NoopRequest.newBuilder();
          instance.noop(null, builder.build(), rpcCallback);
          rpcCallback.get();
          // Looks like null is expected when void.  That is what the test below is looking for
          return null;
        }
      });
}
项目:pbase    文件:TestServerCustomProtocol.java   
private Map<byte [], String> hello(final Table table, final String send, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class,
      start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          BlockingRpcCallback<PingProtos.HelloResponse> rpcCallback =
            new BlockingRpcCallback<PingProtos.HelloResponse>();
          PingProtos.HelloRequest.Builder builder = PingProtos.HelloRequest.newBuilder();
          if (send != null) builder.setName(send);
          instance.hello(null, builder.build(), rpcCallback);
          PingProtos.HelloResponse r = rpcCallback.get();
          return r != null && r.hasResponse()? r.getResponse(): null;
        }
      });
}
项目:pbase    文件:TestServerCustomProtocol.java   
private Map<byte [], String> compoundOfHelloAndPing(final Table table, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class,
      start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          BlockingRpcCallback<PingProtos.HelloResponse> rpcCallback =
            new BlockingRpcCallback<PingProtos.HelloResponse>();
          PingProtos.HelloRequest.Builder builder = PingProtos.HelloRequest.newBuilder();
          // Call ping on same instance.  Use result calling hello on same instance.
          builder.setName(doPing(instance));
          instance.hello(null, builder.build(), rpcCallback);
          PingProtos.HelloResponse r = rpcCallback.get();
          return r != null && r.hasResponse()? r.getResponse(): null;
        }
      });
}
项目:pbase    文件:TestServerCustomProtocol.java   
private Map<byte [], String> noop(final Table table, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class, start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          BlockingRpcCallback<PingProtos.NoopResponse> rpcCallback =
            new BlockingRpcCallback<PingProtos.NoopResponse>();
          PingProtos.NoopRequest.Builder builder = PingProtos.NoopRequest.newBuilder();
          instance.noop(null, builder.build(), rpcCallback);
          rpcCallback.get();
          // Looks like null is expected when void.  That is what the test below is looking for
          return null;
        }
      });
}
项目:HIndex    文件:TestServerCustomProtocol.java   
private Map<byte [], String> hello(final HTable table, final String send, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class,
      start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          BlockingRpcCallback<PingProtos.HelloResponse> rpcCallback =
            new BlockingRpcCallback<PingProtos.HelloResponse>();
          PingProtos.HelloRequest.Builder builder = PingProtos.HelloRequest.newBuilder();
          if (send != null) builder.setName(send);
          instance.hello(null, builder.build(), rpcCallback);
          PingProtos.HelloResponse r = rpcCallback.get();
          return r != null && r.hasResponse()? r.getResponse(): null;
        }
      });
}
项目:HIndex    文件:TestServerCustomProtocol.java   
private Map<byte [], String> compoundOfHelloAndPing(final HTable table, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class,
      start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          BlockingRpcCallback<PingProtos.HelloResponse> rpcCallback =
            new BlockingRpcCallback<PingProtos.HelloResponse>();
          PingProtos.HelloRequest.Builder builder = PingProtos.HelloRequest.newBuilder();
          // Call ping on same instance.  Use result calling hello on same instance.
          builder.setName(doPing(instance));
          instance.hello(null, builder.build(), rpcCallback);
          PingProtos.HelloResponse r = rpcCallback.get();
          return r != null && r.hasResponse()? r.getResponse(): null;
        }
      });
}
项目:HIndex    文件:TestServerCustomProtocol.java   
private Map<byte [], String> noop(final HTable table, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class, start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          BlockingRpcCallback<PingProtos.NoopResponse> rpcCallback =
            new BlockingRpcCallback<PingProtos.NoopResponse>();
          PingProtos.NoopRequest.Builder builder = PingProtos.NoopRequest.newBuilder();
          instance.noop(null, builder.build(), rpcCallback);
          rpcCallback.get();
          // Looks like null is expected when void.  That is what the test below is looking for
          return null;
        }
      });
}
项目:hbase    文件:TestServerCustomProtocol.java   
private Map<byte [], String> hello(final Table table, final String send, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class,
      start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          CoprocessorRpcUtils.BlockingRpcCallback<PingProtos.HelloResponse> rpcCallback =
            new CoprocessorRpcUtils.BlockingRpcCallback<>();
          PingProtos.HelloRequest.Builder builder = PingProtos.HelloRequest.newBuilder();
          if (send != null) builder.setName(send);
          instance.hello(null, builder.build(), rpcCallback);
          PingProtos.HelloResponse r = rpcCallback.get();
          return r != null && r.hasResponse()? r.getResponse(): null;
        }
      });
}
项目:hbase    文件:TestServerCustomProtocol.java   
private Map<byte [], String> compoundOfHelloAndPing(final Table table, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class,
      start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          CoprocessorRpcUtils.BlockingRpcCallback<PingProtos.HelloResponse> rpcCallback =
            new CoprocessorRpcUtils.BlockingRpcCallback<>();
          PingProtos.HelloRequest.Builder builder = PingProtos.HelloRequest.newBuilder();
          // Call ping on same instance.  Use result calling hello on same instance.
          builder.setName(doPing(instance));
          instance.hello(null, builder.build(), rpcCallback);
          PingProtos.HelloResponse r = rpcCallback.get();
          return r != null && r.hasResponse()? r.getResponse(): null;
        }
      });
}
项目:hbase    文件:TestServerCustomProtocol.java   
private Map<byte [], String> noop(final Table table, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class, start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          CoprocessorRpcUtils.BlockingRpcCallback<PingProtos.NoopResponse> rpcCallback =
            new CoprocessorRpcUtils.BlockingRpcCallback<>();
          PingProtos.NoopRequest.Builder builder = PingProtos.NoopRequest.newBuilder();
          instance.noop(null, builder.build(), rpcCallback);
          rpcCallback.get();
          // Looks like null is expected when void.  That is what the test below is looking for
          return null;
        }
      });
}
项目:PyroDB    文件:TestServerCustomProtocol.java   
private Map<byte [], String> hello(final HTable table, final String send, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class,
      start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          BlockingRpcCallback<PingProtos.HelloResponse> rpcCallback =
            new BlockingRpcCallback<PingProtos.HelloResponse>();
          PingProtos.HelloRequest.Builder builder = PingProtos.HelloRequest.newBuilder();
          if (send != null) builder.setName(send);
          instance.hello(null, builder.build(), rpcCallback);
          PingProtos.HelloResponse r = rpcCallback.get();
          return r != null && r.hasResponse()? r.getResponse(): null;
        }
      });
}
项目:PyroDB    文件:TestServerCustomProtocol.java   
private Map<byte [], String> compoundOfHelloAndPing(final HTable table, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class,
      start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          BlockingRpcCallback<PingProtos.HelloResponse> rpcCallback =
            new BlockingRpcCallback<PingProtos.HelloResponse>();
          PingProtos.HelloRequest.Builder builder = PingProtos.HelloRequest.newBuilder();
          // Call ping on same instance.  Use result calling hello on same instance.
          builder.setName(doPing(instance));
          instance.hello(null, builder.build(), rpcCallback);
          PingProtos.HelloResponse r = rpcCallback.get();
          return r != null && r.hasResponse()? r.getResponse(): null;
        }
      });
}
项目:PyroDB    文件:TestServerCustomProtocol.java   
private Map<byte [], String> noop(final HTable table, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class, start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          BlockingRpcCallback<PingProtos.NoopResponse> rpcCallback =
            new BlockingRpcCallback<PingProtos.NoopResponse>();
          PingProtos.NoopRequest.Builder builder = PingProtos.NoopRequest.newBuilder();
          instance.noop(null, builder.build(), rpcCallback);
          rpcCallback.get();
          // Looks like null is expected when void.  That is what the test below is looking for
          return null;
        }
      });
}
项目:c5    文件:TestServerCustomProtocol.java   
private Map<byte [], String> hello(final HTable table, final String send, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class,
      start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          BlockingRpcCallback<PingProtos.HelloResponse> rpcCallback =
            new BlockingRpcCallback<PingProtos.HelloResponse>();
          PingProtos.HelloRequest.Builder builder = PingProtos.HelloRequest.newBuilder();
          if (send != null) builder.setName(send);
          instance.hello(null, builder.build(), rpcCallback);
          PingProtos.HelloResponse r = rpcCallback.get();
          return r != null && r.hasResponse()? r.getResponse(): null;
        }
      });
}
项目:c5    文件:TestServerCustomProtocol.java   
private Map<byte [], String> compoundOfHelloAndPing(final HTable table, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class,
      start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          BlockingRpcCallback<PingProtos.HelloResponse> rpcCallback =
            new BlockingRpcCallback<PingProtos.HelloResponse>();
          PingProtos.HelloRequest.Builder builder = PingProtos.HelloRequest.newBuilder();
          // Call ping on same instance.  Use result calling hello on same instance.
          builder.setName(doPing(instance));
          instance.hello(null, builder.build(), rpcCallback);
          PingProtos.HelloResponse r = rpcCallback.get();
          return r != null && r.hasResponse()? r.getResponse(): null;
        }
      });
}
项目:c5    文件:TestServerCustomProtocol.java   
private Map<byte [], String> noop(final HTable table, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class, start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          BlockingRpcCallback<PingProtos.NoopResponse> rpcCallback =
            new BlockingRpcCallback<PingProtos.NoopResponse>();
          PingProtos.NoopRequest.Builder builder = PingProtos.NoopRequest.newBuilder();
          instance.noop(null, builder.build(), rpcCallback);
          rpcCallback.get();
          // Looks like null is expected when void.  That is what the test below is looking for
          return null;
        }
      });
}
项目:DominoHBase    文件:TestServerCustomProtocol.java   
private Map<byte [], String> hello(final HTable table, final String send, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class,
      start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          BlockingRpcCallback<PingProtos.HelloResponse> rpcCallback =
            new BlockingRpcCallback<PingProtos.HelloResponse>();
          PingProtos.HelloRequest.Builder builder = PingProtos.HelloRequest.newBuilder();
          if (send != null) builder.setName(send);
          instance.hello(null, builder.build(), rpcCallback);
          PingProtos.HelloResponse r = rpcCallback.get();
          return r != null && r.hasResponse()? r.getResponse(): null;
        }
      });
}
项目:DominoHBase    文件:TestServerCustomProtocol.java   
private Map<byte [], String> compoundOfHelloAndPing(final HTable table, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class,
      start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          BlockingRpcCallback<PingProtos.HelloResponse> rpcCallback =
            new BlockingRpcCallback<PingProtos.HelloResponse>();
          PingProtos.HelloRequest.Builder builder = PingProtos.HelloRequest.newBuilder();
          // Call ping on same instance.  Use result calling hello on same instance.
          builder.setName(doPing(instance));
          instance.hello(null, builder.build(), rpcCallback);
          PingProtos.HelloResponse r = rpcCallback.get();
          return r != null && r.hasResponse()? r.getResponse(): null;
        }
      });
}
项目:DominoHBase    文件:TestServerCustomProtocol.java   
private Map<byte [], String> noop(final HTable table, final byte [] start,
    final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class, start, end,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          BlockingRpcCallback<PingProtos.NoopResponse> rpcCallback =
            new BlockingRpcCallback<PingProtos.NoopResponse>();
          PingProtos.NoopRequest.Builder builder = PingProtos.NoopRequest.newBuilder();
          instance.noop(null, builder.build(), rpcCallback);
          rpcCallback.get();
          // Looks like null is expected when void.  That is what the test below is looking for
          return null;
        }
      });
}
项目:ditb    文件:TestServerCustomProtocol.java   
@Test
public void testSingleMethod() throws Throwable {
  try (HTable table = new HTable(util.getConfiguration(), TEST_TABLE)) {
    RegionLocator locator = table.getRegionLocator();
    Map<byte [], String> results = table.coprocessorService(PingProtos.PingService.class,
      null, ROW_A,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          BlockingRpcCallback<PingProtos.PingResponse> rpcCallback =
            new BlockingRpcCallback<PingProtos.PingResponse>();
          instance.ping(null, PingProtos.PingRequest.newBuilder().build(), rpcCallback);
          return rpcCallback.get().getPong();
        }
      });
    // Should have gotten results for 1 of the three regions only since we specified
    // rows from 1 region
    assertEquals(1, results.size());
    verifyRegionResults(locator, results, ROW_A);

    final String name = "NAME";
    results = hello(table, name, null, ROW_A);
    // Should have gotten results for 1 of the three regions only since we specified
    // rows from 1 region
    assertEquals(1, results.size());
    verifyRegionResults(locator, results, "Hello, NAME", ROW_A);
  }
}
项目:ditb    文件:TestServerCustomProtocol.java   
private Map<byte [], String> ping(final Table table, final byte [] start, final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class, start, end,
    new Batch.Call<PingProtos.PingService, String>() {
      @Override
      public String call(PingProtos.PingService instance) throws IOException {
        return doPing(instance);
      }
    });
}
项目:pbase    文件:TestServerCustomProtocol.java   
@Test
public void testSingleMethod() throws Throwable {
  HTable table = new HTable(util.getConfiguration(), TEST_TABLE);
  Map<byte [], String> results = table.coprocessorService(PingProtos.PingService.class,
    null, ROW_A,
    new Batch.Call<PingProtos.PingService, String>() {
      @Override
      public String call(PingProtos.PingService instance) throws IOException {
        BlockingRpcCallback<PingProtos.PingResponse> rpcCallback =
          new BlockingRpcCallback<PingProtos.PingResponse>();
        instance.ping(null, PingProtos.PingRequest.newBuilder().build(), rpcCallback);
        return rpcCallback.get().getPong();
      }
    });
  // Should have gotten results for 1 of the three regions only since we specified
  // rows from 1 region
  assertEquals(1, results.size());
  verifyRegionResults(table, results, ROW_A);

  final String name = "NAME";
  results = hello(table, name, null, ROW_A);
  // Should have gotten results for 1 of the three regions only since we specified
  // rows from 1 region
  assertEquals(1, results.size());
  verifyRegionResults(table, results, "Hello, NAME", ROW_A);
  table.close();
}
项目:pbase    文件:TestServerCustomProtocol.java   
private Map<byte [], String> ping(final Table table, final byte [] start, final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class, start, end,
    new Batch.Call<PingProtos.PingService, String>() {
      @Override
      public String call(PingProtos.PingService instance) throws IOException {
        return doPing(instance);
      }
    });
}
项目:HIndex    文件:TestServerCustomProtocol.java   
@Test
public void testSingleMethod() throws Throwable {
  HTable table = new HTable(util.getConfiguration(), TEST_TABLE);
  Map<byte [], String> results = table.coprocessorService(PingProtos.PingService.class,
    null, ROW_A,
    new Batch.Call<PingProtos.PingService, String>() {
      @Override
      public String call(PingProtos.PingService instance) throws IOException {
        BlockingRpcCallback<PingProtos.PingResponse> rpcCallback =
          new BlockingRpcCallback<PingProtos.PingResponse>();
        instance.ping(null, PingProtos.PingRequest.newBuilder().build(), rpcCallback);
        return rpcCallback.get().getPong();
      }
    });
  // Should have gotten results for 1 of the three regions only since we specified
  // rows from 1 region
  assertEquals(1, results.size());
  verifyRegionResults(table, results, ROW_A);

  final String name = "NAME";
  results = hello(table, name, null, ROW_A);
  // Should have gotten results for 1 of the three regions only since we specified
  // rows from 1 region
  assertEquals(1, results.size());
  verifyRegionResults(table, results, "Hello, NAME", ROW_A);
  table.close();
}
项目:HIndex    文件:TestServerCustomProtocol.java   
private Map<byte [], String> ping(final HTable table, final byte [] start, final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class, start, end,
    new Batch.Call<PingProtos.PingService, String>() {
      @Override
      public String call(PingProtos.PingService instance) throws IOException {
        return doPing(instance);
      }
    });
}
项目:hbase    文件:TestServerCustomProtocol.java   
@Test
public void testSingleMethod() throws Throwable {
  try (Table table = util.getConnection().getTable(TEST_TABLE);
      RegionLocator locator = util.getConnection().getRegionLocator(TEST_TABLE)) {
    Map<byte [], String> results = table.coprocessorService(PingProtos.PingService.class,
      null, ROW_A,
      new Batch.Call<PingProtos.PingService, String>() {
        @Override
        public String call(PingProtos.PingService instance) throws IOException {
          CoprocessorRpcUtils.BlockingRpcCallback<PingProtos.PingResponse> rpcCallback =
            new CoprocessorRpcUtils.BlockingRpcCallback<>();
          instance.ping(null, PingProtos.PingRequest.newBuilder().build(), rpcCallback);
          return rpcCallback.get().getPong();
        }
      });
    // Should have gotten results for 1 of the three regions only since we specified
    // rows from 1 region
    assertEquals(1, results.size());
    verifyRegionResults(locator, results, ROW_A);

    final String name = "NAME";
    results = hello(table, name, null, ROW_A);
    // Should have gotten results for 1 of the three regions only since we specified
    // rows from 1 region
    assertEquals(1, results.size());
    verifyRegionResults(locator, results, "Hello, NAME", ROW_A);
  }
}
项目:hbase    文件:TestServerCustomProtocol.java   
private Map<byte [], String> ping(final Table table, final byte [] start, final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class, start, end,
    new Batch.Call<PingProtos.PingService, String>() {
      @Override
      public String call(PingProtos.PingService instance) throws IOException {
        return doPing(instance);
      }
    });
}
项目:PyroDB    文件:TestServerCustomProtocol.java   
@Test
public void testSingleMethod() throws Throwable {
  HTable table = new HTable(util.getConfiguration(), TEST_TABLE);
  Map<byte [], String> results = table.coprocessorService(PingProtos.PingService.class,
    null, ROW_A,
    new Batch.Call<PingProtos.PingService, String>() {
      @Override
      public String call(PingProtos.PingService instance) throws IOException {
        BlockingRpcCallback<PingProtos.PingResponse> rpcCallback =
          new BlockingRpcCallback<PingProtos.PingResponse>();
        instance.ping(null, PingProtos.PingRequest.newBuilder().build(), rpcCallback);
        return rpcCallback.get().getPong();
      }
    });
  // Should have gotten results for 1 of the three regions only since we specified
  // rows from 1 region
  assertEquals(1, results.size());
  verifyRegionResults(table, results, ROW_A);

  final String name = "NAME";
  results = hello(table, name, null, ROW_A);
  // Should have gotten results for 1 of the three regions only since we specified
  // rows from 1 region
  assertEquals(1, results.size());
  verifyRegionResults(table, results, "Hello, NAME", ROW_A);
  table.close();
}
项目:PyroDB    文件:TestServerCustomProtocol.java   
private Map<byte [], String> ping(final HTable table, final byte [] start, final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class, start, end,
    new Batch.Call<PingProtos.PingService, String>() {
      @Override
      public String call(PingProtos.PingService instance) throws IOException {
        return doPing(instance);
      }
    });
}
项目:c5    文件:TestServerCustomProtocol.java   
@Test
public void testSingleMethod() throws Throwable {
  HTable table = new HTable(util.getConfiguration(), TEST_TABLE);
  Map<byte [], String> results = table.coprocessorService(PingProtos.PingService.class,
    null, ROW_A,
    new Batch.Call<PingProtos.PingService, String>() {
      @Override
      public String call(PingProtos.PingService instance) throws IOException {
        BlockingRpcCallback<PingProtos.PingResponse> rpcCallback =
          new BlockingRpcCallback<PingProtos.PingResponse>();
        instance.ping(null, PingProtos.PingRequest.newBuilder().build(), rpcCallback);
        return rpcCallback.get().getPong();
      }
    });
  // Should have gotten results for 1 of the three regions only since we specified
  // rows from 1 region
  assertEquals(1, results.size());
  verifyRegionResults(table, results, ROW_A);

  final String name = "NAME";
  results = hello(table, name, null, ROW_A);
  // Should have gotten results for 1 of the three regions only since we specified
  // rows from 1 region
  assertEquals(1, results.size());
  verifyRegionResults(table, results, "Hello, NAME", ROW_A);
  table.close();
}
项目:c5    文件:TestServerCustomProtocol.java   
private Map<byte [], String> ping(final HTable table, final byte [] start, final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class, start, end,
    new Batch.Call<PingProtos.PingService, String>() {
      @Override
      public String call(PingProtos.PingService instance) throws IOException {
        return doPing(instance);
      }
    });
}
项目:DominoHBase    文件:TestServerCustomProtocol.java   
@Test
public void testSingleMethod() throws Throwable {
  HTable table = new HTable(util.getConfiguration(), TEST_TABLE);
  Map<byte [], String> results = table.coprocessorService(PingProtos.PingService.class,
    null, ROW_A,
    new Batch.Call<PingProtos.PingService, String>() {
      @Override
      public String call(PingProtos.PingService instance) throws IOException {
        BlockingRpcCallback<PingProtos.PingResponse> rpcCallback =
          new BlockingRpcCallback<PingProtos.PingResponse>();
        instance.ping(null, PingProtos.PingRequest.newBuilder().build(), rpcCallback);
        return rpcCallback.get().getPong();
      }
    });
  // Should have gotten results for 1 of the three regions only since we specified
  // rows from 1 region
  assertEquals(1, results.size());
  verifyRegionResults(table, results, ROW_A);

  final String name = "NAME";
  results = hello(table, name, null, ROW_A);
  // Should have gotten results for 1 of the three regions only since we specified
  // rows from 1 region
  assertEquals(1, results.size());
  verifyRegionResults(table, results, "Hello, NAME", ROW_A);
  table.close();
}
项目:DominoHBase    文件:TestServerCustomProtocol.java   
private Map<byte [], String> ping(final HTable table, final byte [] start, final byte [] end)
throws ServiceException, Throwable {
  return table.coprocessorService(PingProtos.PingService.class, start, end,
    new Batch.Call<PingProtos.PingService, String>() {
      @Override
      public String call(PingProtos.PingService instance) throws IOException {
        return doPing(instance);
      }
    });
}
项目:ditb    文件:TestServerCustomProtocol.java   
private static String doPing(PingProtos.PingService instance) throws IOException {
  BlockingRpcCallback<PingProtos.PingResponse> rpcCallback =
      new BlockingRpcCallback<PingProtos.PingResponse>();
    instance.ping(null, PingProtos.PingRequest.newBuilder().build(), rpcCallback);
    return rpcCallback.get().getPong();
}
项目:pbase    文件:TestServerCustomProtocol.java   
private static String doPing(PingProtos.PingService instance) throws IOException {
  BlockingRpcCallback<PingProtos.PingResponse> rpcCallback =
      new BlockingRpcCallback<PingProtos.PingResponse>();
    instance.ping(null, PingProtos.PingRequest.newBuilder().build(), rpcCallback);
    return rpcCallback.get().getPong();
}
项目:HIndex    文件:TestServerCustomProtocol.java   
private static String doPing(PingProtos.PingService instance) throws IOException {
  BlockingRpcCallback<PingProtos.PingResponse> rpcCallback =
      new BlockingRpcCallback<PingProtos.PingResponse>();
    instance.ping(null, PingProtos.PingRequest.newBuilder().build(), rpcCallback);
    return rpcCallback.get().getPong();
}
项目:hbase    文件:TestServerCustomProtocol.java   
private static String doPing(PingProtos.PingService instance) throws IOException {
  CoprocessorRpcUtils.BlockingRpcCallback<PingProtos.PingResponse> rpcCallback =
      new CoprocessorRpcUtils.BlockingRpcCallback<>();
    instance.ping(null, PingProtos.PingRequest.newBuilder().build(), rpcCallback);
    return rpcCallback.get().getPong();
}
项目:PyroDB    文件:TestServerCustomProtocol.java   
private static String doPing(PingProtos.PingService instance) throws IOException {
  BlockingRpcCallback<PingProtos.PingResponse> rpcCallback =
      new BlockingRpcCallback<PingProtos.PingResponse>();
    instance.ping(null, PingProtos.PingRequest.newBuilder().build(), rpcCallback);
    return rpcCallback.get().getPong();
}