Package org.apache.hadoop.ha.proto.HAServiceProtocolProtos

Examples of org.apache.hadoop.ha.proto.HAServiceProtocolProtos.TransitionToActiveRequestProto


  }

  @Override
  public void transitionToActive(StateChangeRequestInfo reqInfo) throws IOException {
    try {
      TransitionToActiveRequestProto req =
          TransitionToActiveRequestProto.newBuilder()
            .setReqInfo(convert(reqInfo)).build();

      rpcProxy.transitionToActive(NULL_CONTROLLER, req);
    } catch (ServiceException e) {
View Full Code Here

TOP

Related Classes of org.apache.hadoop.ha.proto.HAServiceProtocolProtos.TransitionToActiveRequestProto

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.