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

net.hasor.tconsole.TelOptions Maven / Gradle / Ivy

There is a newer version: 4.2.5
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 net.hasor.tconsole;
/**
 * tConsole 可以用的一些 session 变量。
 * @version : 2019年10月30日
 * @author 赵永春 ([email protected])
 */
public interface TelOptions {
    /** 命令结束之后立刻关闭 session */
    public static final String CLOSE_SESSION     = "TEL_CLOSE";
    /** 静默:只输出命令本身的返回信息,在TelClient上该配置始终是true */
    public static final String SILENT            = "TEL_SILENT";
    /** 静默模式下的命令结束符。TelClient 上该配置始终有值 */
    public static final String ENDCODE_OF_SILENT = "TEL_ENDCODE_OF_SILENT";
    /** 输出每条命令的成本时间 */
    public static final String COST              = "TEL_COST";
    /** 当会话中执行命令数量达到设定值之后立刻关闭 session */
    public static final String MAX_EXECUTOR_NUM  = "TEL_MAX_EXECUTOR_NUM";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy