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

com.alibaba.arthas.tunnel.server.cluster.TunnelClusterStore Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package com.alibaba.arthas.tunnel.server.cluster;

import java.util.Collection;
import java.util.Map;
import java.util.concurrent.TimeUnit;

import com.alibaba.arthas.tunnel.server.AgentClusterInfo;

/**
 * 保存agentId连接到哪个具体的 tunnel server,集群部署时使用
 * 
 * @author hengyunabc 2020-10-27
 *
 */
public interface TunnelClusterStore {
    public void addAgent(String agentId, AgentClusterInfo info, long expire, TimeUnit timeUnit);

    public AgentClusterInfo findAgent(String agentId);

    public void removeAgent(String agentId);

    public Collection allAgentIds();

    public Map agentInfo(String appName);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy