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

org.jetlinks.coap.CoapConstants Maven / Gradle / Ivy

There is a newer version: 1.0.0-RC2
Show newest version
package org.jetlinks.coap;

import java.nio.charset.Charset;

/**
 * @author guyi
 */
public final class CoapConstants {

    public static final int DEFAULT_PORT = 5683;
    public static final String WELL_KNOWN_CORE = "/.well-known/core";
    public static final Charset DEFAULT_CHARSET = Charset.forName("UTF-8");
    public static final long ACK_TIMEOUT = 2000;
    public static final float ACK_RANDOM_FACTOR = 1.5f;
    public static final Short MAX_RETRANSMIT = 4;

    private CoapConstants() {
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy