Package org.apache.hcatalog.hbase.snapshot.RevisionManagerEndpointProtos

Examples of org.apache.hcatalog.hbase.snapshot.RevisionManagerEndpointProtos.KeepAliveTransactionRequest


      public Void call(RevisionManagerEndpointService service)
        throws IOException {
        ServerRpcController controller = new ServerRpcController();
        BlockingRpcCallback<KeepAliveTransactionResponse> done =
            new BlockingRpcCallback<KeepAliveTransactionResponse>();
        KeepAliveTransactionRequest request = KeepAliveTransactionRequest.newBuilder()
              .setTransaction(rpcConverter.convertTransaction(transaction)).build();
        service.keepAliveTransaction(controller, request, done);
        blockOnResponse(done, controller);
        return null;
      }
View Full Code Here

TOP

Related Classes of org.apache.hcatalog.hbase.snapshot.RevisionManagerEndpointProtos.KeepAliveTransactionRequest

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.