File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
dbus-java/src/main/java/org/freedesktop/dbus/connections Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 7474public abstract class AbstractConnection implements Closeable {
7575
7676 private static final Map <Thread , DBusCallInfo > INFOMAP = new ConcurrentHashMap <>();
77- /**
78- * Timeout in µs on checking the BUS for incoming messages and sending outgoing messages
79- */
80- private static final int TIMEOUT = 100000 ;
8177 /**
8278 * Default thread pool size
8379 */
8480 private static final int THREADCOUNT = 4 ;
81+ /**
82+ * Timeout in µs on checking the BUS for incoming messages and sending outgoing messages
83+ */
84+ protected static final int TIMEOUT = 100000 ;
8585
8686 public static final boolean FLOAT_SUPPORT = (null != System .getenv ("DBUS_JAVA_FLOATS" ));
8787 public static final String BUSNAME_REGEX = "^[-_a-zA-Z][-_a-zA-Z0-9]*(\\ .[-_a-zA-Z][-_a-zA-Z0-9]*)*$" ;
You can’t perform that action at this time.
0 commit comments