All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.dubbo.remoting.etcd.Constants Maven / Gradle / Ivy

There is a newer version: 3.3.0-beta.3
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.apache.dubbo.remoting.etcd;

import static org.apache.dubbo.remoting.Constants.DEFAULT_IO_THREADS;

public interface Constants {
    String ETCD3_NOTIFY_MAXTHREADS_KEYS = "etcd3.notify.maxthreads";

    int DEFAULT_ETCD3_NOTIFY_THREADS = DEFAULT_IO_THREADS;

    String DEFAULT_ETCD3_NOTIFY_QUEUES_KEY = "etcd3.notify.queues";

    int DEFAULT_GRPC_QUEUES = 300_0000;

    String RETRY_PERIOD_KEY = "retry.period";

    int DEFAULT_RETRY_PERIOD = 5 * 1000;

    int DEFAULT_SESSION_TIMEOUT = 60 * 1000;

    String HTTP_SUBFIX_KEY = "://";

    String HTTP_KEY = "http://";

    int DEFAULT_KEEPALIVE_TIMEOUT = DEFAULT_SESSION_TIMEOUT / 2;

    String SESSION_TIMEOUT_KEY = "session";

    int DEFAULT_RECONNECT_PERIOD = 3 * 1000;

    String ROUTERS_CATEGORY = "routers";

    String PROVIDERS_CATEGORY = "providers";

    String CONSUMERS_CATEGORY = "consumers";

    String CONFIGURATORS_CATEGORY = "configurators";
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy