Package com.google.walkaround.proto

Examples of com.google.walkaround.proto.Delta


    ProtocolWaveletOperation opMessage = OperationSerializer.createMessage(op);
    return serializer.serializeOp(opMessage);
  }

  public String serializeDelta(WaveletOperation operation) {
    Delta delta = MessageFactoryHelper.createDelta();
    delta.setAuthor(operation.getContext().getCreator().getAddress());
    delta.setTimestampMillis(operation.getContext().getTimestamp());
    delta.setOperation(OperationSerializer.createMessage(operation));
    return serializer.serializeDelta(delta);
  }
View Full Code Here

TOP

Related Classes of com.google.walkaround.proto.Delta

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.