Examples of FindRemoteWavesTaskGsonImpl


Examples of com.google.walkaround.proto.gson.FindRemoteWavesTaskGsonImpl

      SourceInstance instance, List<Pair<Long, Long>> intervals,
      @Nullable ImportSettings autoImportSettings) {
    log.info("intervals=" + intervals + ", settings=" + autoImportSettings);
    ImmutableList.Builder<ImportTaskPayload> accu = ImmutableList.builder();
    for (Pair<Long, Long> interval : intervals) {
      FindRemoteWavesTask task = new FindRemoteWavesTaskGsonImpl();
      task.setInstance(instance.serialize());
      task.setOnOrAfterDays(interval.getFirst());
      task.setBeforeDays(interval.getSecond());
      if (autoImportSettings != null) {
        task.setAutoImportSettings(autoImportSettings);
      }
      ImportTaskPayload payload = new ImportTaskPayloadGsonImpl();
      payload.setFindWavesTask(task);
      accu.add(payload);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.