com.github.segmentio.Defaults Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of analytics Show documentation
Show all versions of analytics Show documentation
The analytics API you've always wanted.
package com.github.segmentio;
public class Defaults {
public static final String HOST = "https://api.segment.io";
public static final int MAX_QUEUE_SIZE = 10000;
public static final int TIMEOUT = 10000;
public static final int RETRIES = 2;
public static final int BACKOFF = 1000;
}