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

org.apache.dubbo.registry.Constants Maven / Gradle / Ivy

The 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.registry;

public interface Constants {
    String REGISTER_IP_KEY = "register.ip";

    String REGISTER_KEY = "register";

    String SUBSCRIBE_KEY = "subscribe";

    String DEFAULT_REGISTRY = "dubbo";

    String REGISTER = "register";

    String UNREGISTER = "unregister";

    String SUBSCRIBE = "subscribe";

    String UNSUBSCRIBE = "unsubscribe";

    String CONFIGURATORS_SUFFIX = ".configurators";

    String ADMIN_PROTOCOL = "admin";

    String PROVIDER_PROTOCOL = "provider";

    String CONSUMER_PROTOCOL = "consumer";

    String SCRIPT_PROTOCOL = "script";

    String CONDITION_PROTOCOL = "condition";
    String TRACE_PROTOCOL = "trace";
    /**
     * simple the registry for provider.
     *
     * @since 2.7.0
     */
    String SIMPLIFIED_KEY = "simplified";

    /**
     * To decide whether register center saves file synchronously, the default value is asynchronously
     */
    String REGISTRY_FILESAVE_SYNC_KEY = "save.file";

    /**
     * Reconnection period in milliseconds for register center
     */
    String REGISTRY_RECONNECT_PERIOD_KEY = "reconnect.period";

    int DEFAULT_SESSION_TIMEOUT = 60 * 1000;

    /**
     * Default value for the times of retry: -1 (forever)
     */
    int DEFAULT_REGISTRY_RETRY_TIMES = -1;

    int DEFAULT_REGISTRY_RECONNECT_PERIOD = 3 * 1000;

    /**
     * Default value for the period of retry interval in milliseconds: 5000
     */
    int DEFAULT_REGISTRY_RETRY_PERIOD = 5 * 1000;

    /**
     * Most retry times
     */
    String REGISTRY_RETRY_TIMES_KEY = "retry.times";

    /**
     * Period of registry center's retry interval
     */
    String REGISTRY_RETRY_PERIOD_KEY = "retry.period";

    String SESSION_TIMEOUT_KEY = "session";

    /**
     * To decide the frequency of checking Distributed Service Discovery Registry callback hook (in ms)
     */
    String ECHO_POLLING_CYCLE_KEY = "echoPollingCycle";

    /**
     * Default value for check frequency: 60000 (ms)
     */
    int DEFAULT_ECHO_POLLING_CYCLE = 60000;

    String MIGRATION_STEP_KEY = "migration.step";

    String MIGRATION_DELAY_KEY = "migration.delay";

    String MIGRATION_FORCE_KEY = "migration.force";

    String MIGRATION_PROMOTION_KEY = "migration.promotion";

    String MIGRATION_THRESHOLD_KEY = "migration.threshold";

    String ENABLE_26X_CONFIGURATION_LISTEN = "enable-26x-configuration-listen";

    String ENABLE_CONFIGURATION_LISTEN = "enable-configuration-listen";

    /**
     * MIGRATION_RULE_XXX from remote configuration
     */
    String MIGRATION_RULE_KEY = "key";

    String MIGRATION_RULE_STEP_KEY = "step";

    String MIGRATION_RULE_THRESHOLD_KEY = "threshold";

    String MIGRATION_RULE_PROPORTION_KEY = "proportion";

    String MIGRATION_RULE_DELAY_KEY = "delay";

    String MIGRATION_RULE_FORCE_KEY = "force";

    String MIGRATION_RULE_INTERFACES_KEY = "interfaces";

    String MIGRATION_RULE_APPLICATIONS_KEY = "applications";

    String USER_HOME = "user.home";

    String DUBBO_REGISTRY = "/.dubbo/dubbo-registry-";

    String CACHE = ".cache";

    int DEFAULT_CAS_RETRY_TIMES = 10;

    String CAS_RETRY_TIMES_KEY = "dubbo.metadata-report.cas-retry-times";

    int DEFAULT_CAS_RETRY_WAIT_TIME = 100;

    String CAS_RETRY_WAIT_TIME_KEY = "dubbo.metadata-report.cas-retry-wait-time";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy