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

jp.gopay.sdk.utils.streams.WindowSize Maven / Gradle / Ivy

There is a newer version: 0.11.17
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy