Files
rosetta-wss/src/main/java/io/orprotocol/Settings.java

19 lines
600 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package io.orprotocol;
public class Settings {
/**
* Порт сервера
*/
public int port = 8881;
/**
* Интервал отправки heartbeat пакетов в секундах.
* Если клиент не отправляет heartbeat пакеты в течение этого времени, сервер может считать его отключенным.
*/
public int heartbeatInterval = 30;
public Settings(int port, int heartbeatInterval) {
this.port = port;
this.heartbeatInterval = heartbeatInterval;
}
}