Package com.alibaba.wasp.protobuf.generated.MetaProtos

Examples of com.alibaba.wasp.protobuf.generated.MetaProtos.TransactionProto


   * return this byte[] of this object.
   *
   * @return
   */
  public byte[] getTransactionEntity() {
    TransactionProto tProto = conver(this);
    return tProto.toByteArray();
  }
View Full Code Here


   *
   * @param data
   * @return
   */
  public static Transaction convert(byte[] data) {
    TransactionProto tProto;
    try {
      tProto = TransactionProto.parseFrom(data);
      Transaction t = new Transaction(tProto.getTid());
      t.setTransactionEdits(tProto.getMutatesList());
      return t;
    } catch (InvalidProtocolBufferException e) {
      RedoLog.LOG.error("Failed from TransactionProto.parseFrom.", e);
      return null;
    }
View Full Code Here

TOP

Related Classes of com.alibaba.wasp.protobuf.generated.MetaProtos.TransactionProto

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.