1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 23:05:47 +02:00

[285083][dstore] default socket timeout preference value is too low

This commit is contained in:
David McKnight 2009-07-29 20:38:22 +00:00
parent 7d3509d475
commit 1933ad6a5e

View file

@ -1,5 +1,5 @@
/********************************************************************************
* Copyright (c) 2008 IBM Corporation. All rights reserved.
* Copyright (c) 2008, 2009 IBM Corporation. All rights reserved.
* This program and the accompanying materials are made available under the terms
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
@ -10,12 +10,13 @@
*
* Contributors:
* David McKnight (IBM) - [228334][api][breaking][dstore] Default DataStore connection timeout is too short
* David McKnight (IBM) - [285083][dstore] default socket timeout preference value is too low
********************************************************************************/
package org.eclipse.rse.internal.connectorservice.dstore;
public interface IDStoreDefaultPreferenceConstants {
public static final boolean DEFAULT_PREF_CACHE_REMOTE_CLASSES = true;
public static final int DEFAULT_PREF_SOCKET_TIMEOUT = 5000;
public static final int DEFAULT_PREF_SOCKET_TIMEOUT = 10000;
public static final boolean DEFAULT_PREF_DO_KEEPALIVE = true;
public static final int DEFAULT_PREF_KEEPALIVE_RESPONSE_TIMEOUT = 60000;
public static final int DEFAULT_PREF_SOCKET_READ_TIMEOUT = 3600000;