Skip to content
Snippets Groups Projects
Commit 0202bbe8 authored by srosse's avatar srosse
Browse files

no-jira: if getter/setter then private variables

parent a35675ff
No related branches found
No related tags found
No related merge requests found
......@@ -67,11 +67,11 @@ public class ClusterEventBus extends AbstractEventBus implements MessageListener
//ores helper is limited to 50 character, so truncate it
static final OLATResourceable CLUSTER_CHANNEL = OresHelper.createOLATResourceableType(ClusterEventBus.class.getName().substring(0, 50));
ClusterConfig clusterConfig;
private ClusterConfig clusterConfig;
// settings
long sendInterval = 1000; // 1000 miliseconds between each "ping/alive/info" message, can be set using spring
long jmsMsgDelayLimit = 5000; // max duration of ClusterInfoEvent send-receive time in ms
private long sendInterval = 1000; // 1000 miliseconds between each "ping/alive/info" message, can be set using spring
private long jmsMsgDelayLimit = 5000; // max duration of ClusterInfoEvent send-receive time in ms
// counters
private long latestSentMsgId = -1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment