com.hazelcast.monitor.MemberState Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2017, Hazelcast, Inc. All Rights Reserved.
*
* Licensed 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 com.hazelcast.monitor;
import com.hazelcast.internal.management.JsonSerializable;
import com.hazelcast.internal.management.dto.ClientEndPointDTO;
import com.hazelcast.internal.management.dto.ClusterHotRestartStatusDTO;
import com.hazelcast.internal.management.dto.MXBeansDTO;
import java.util.Collection;
import java.util.Map;
public interface MemberState extends JsonSerializable {
String getAddress();
Map getRuntimeProps();
LocalMapStats getLocalMapStats(String mapName);
LocalMultiMapStats getLocalMultiMapStats(String mapName);
LocalQueueStats getLocalQueueStats(String queueName);
LocalTopicStats getLocalTopicStats(String topicName);
LocalReplicatedMapStats getLocalReplicatedMapStats(String replicatedMapName);
LocalExecutorStats getLocalExecutorStats(String executorName);
LocalCacheStats getLocalCacheStats(String cacheName);
LocalWanStats getLocalWanStats(String schemeName);
Collection getClients();
MXBeansDTO getMXBeans();
LocalMemoryStats getLocalMemoryStats();
/**
* Returns the local operation statistics.
*
* @return LocalOperationStats statistics
*/
LocalOperationStats getOperationStats();
MemberPartitionState getMemberPartitionState();
NodeState getNodeState();
HotRestartState getHotRestartState();
ClusterHotRestartStatusDTO getClusterHotRestartStatus();
WanSyncState getWanSyncState();
}