jp.gopay.sdk.utils.streams.WindowSize Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gopay-java-sdk Show documentation
Show all versions of gopay-java-sdk Show documentation
Official Gyro-n Payments Java SDK
package jp.gopay.sdk.utils.streams;
// The window size class exists because it is too easy to mix up the timeSpan and number of
// on WindowOptions.
public class WindowSize {
public final long size;
public WindowSize(long size) {
this.size = size;
}
}