Package com.google.walkaround.util.server.appengine

Examples of com.google.walkaround.util.server.appengine.OversizedPropertyMover


    this.tx = Preconditions.checkNotNull(tx, "Null tx");
    this.objectId = Preconditions.checkNotNull(objectId, "Null objectId");
    this.model = Preconditions.checkNotNull(model, "Null model");
    this.stateCache = stateCache;
    snapshotPropertyMover =
        new OversizedPropertyMover(
            datastore,
            ImmutableList.of(
                new MovableProperty(SNAPSHOT_DATA_PROPERTY, SNAPSHOT_OVERSIZED_DATA_PROPERTY,
                    MovableProperty.PropertyType.TEXT)),
            oversizedPropertyBlobWriteListener);
    deltaPropertyMover =
        new OversizedPropertyMover(
            datastore,
            ImmutableList.of(
                new MovableProperty(DELTA_OP_PROPERTY, DELTA_OVERSIZED_OP_PROPERTY,
                    MovableProperty.PropertyType.TEXT)),
            oversizedPropertyBlobWriteListener);
View Full Code Here

TOP

Related Classes of com.google.walkaround.util.server.appengine.OversizedPropertyMover

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.