Package com.google.walkaround.wave.server.WaveLoader

Examples of com.google.walkaround.wave.server.WaveLoader.LoadedWave


    @Nullable Long version = versionString == null ? null : Long.parseLong(versionString);
    @Nullable ClientId clientId = version != null ? null
        : new ClientId(random64.next(
                // TODO(ohler): justify this number
                8));
    LoadedWave wave;
    try {
      if (version == null) {
        wave = loader.load(convObjectId, clientId);
      } else {
        wave = loader.loadStaticAtVersion(convObjectId, version);
View Full Code Here

TOP

Related Classes of com.google.walkaround.wave.server.WaveLoader.LoadedWave

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.