@Override public FinalizeLogSegmentResponseProto finalizeLogSegment( RpcController controller, FinalizeLogSegmentRequestProto req) throws ServiceException { try { impl.finalizeLogSegment(convert(req.getReqInfo()), req.getStartTxId(), req.getEndTxId()); } catch (IOException e) { throw new ServiceException(e); } return FinalizeLogSegmentResponseProto.newBuilder().build(); }