Methods Summary |
---|
public static synchronized int | getMaxRuntimeExceptions()Retrives the max runtime exception that are allowed.
return cmtMaxRuntimeExceptions;
|
public static synchronized int | getReconnectDelay()Retrieves the reconnect delay in seconds.
return reconnectDelayInSeconds;
|
public static synchronized boolean | getReconnectEnabled()Gets reconnect enabled flag.
return reconnectEnabled;
|
public static synchronized int | getReconnectMaxRetries()Gets the reconnect max retries.
return reconnectMaxRetries;
|
public static synchronized void | setMaxRuntimeExceptions(int v)Sets the max runtime exception that are allowed.
cmtMaxRuntimeExceptions = v;
|
public static synchronized void | setReconnectDelay(int v)Sets the reconnect delay in seconds.
reconnectDelayInSeconds = v;
|
public static synchronized void | setReconnectEnabled(boolean v)Sets reconnect enabled flag.
reconnectEnabled = v;
|
public static synchronized void | setReconnectMaxRetries(int v)Sets the reconnect max retries.
reconnectMaxRetries = v;
|