All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.ServiceResult Maven / Gradle / Ivy

package com.amazonaws.services;

public class ServiceResult {
  public final long startTime; // currentMillis
  public final R result;

  public ServiceResult(long startTime, R result) {
    this.startTime = startTime;
    this.result = result;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy