
blazingcache.server.management.BlazingCacheServerStatusMXBean Maven / Gradle / Ivy
/*
* Copyright 2016 Diennea S.R.L..
*
* 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 blazingcache.server.management;
import blazingcache.server.CacheServer;
/**
* Blazing cache server's status on JMX.
*
* @author matteo.casadei
* @since 1.5.0
*
*/
public class BlazingCacheServerStatusMXBean implements CacheServerStatusMXBean {
/**
* the cache server the provided status refers to.
*/
private final CacheServer server;
/**
* Builds a new MXBean to publish server status on JMX.
*
* @param server the {@link CacheServer} instance this MXBean refers to
*/
public BlazingCacheServerStatusMXBean(final CacheServer server) {
this.server = server;
}
/**
* {@inheritDoc}
*/
@Override
public long getCurrentTimestamp() {
return this.server.getCurrentTimestamp();
}
/**
* {@inheritDoc}
*/
@Override
public boolean isLeader() {
return this.server.isLeader();
}
/**
* {@inheritDoc}
*/
@Override
public long getStateChangeTimestamp() {
return this.server.getStateChangeTimestamp();
}
/**
* {@inheritDoc}
*/
@Override
public int getGlobalCacheSize() {
return this.server.getGlobalCacheSize();
}
/**
* {@inheritDoc}
*/
@Override
public int getConnectedClients() {
return this.server.getNumberOfConnectedClients();
}
/**
* {@inheritDoc}
*/
@Override
public int getLockedEntries() {
return this.server.getNumberOfLockedKeys();
}
/**
* {@inheritDoc}
*/
@Override
public long getPendingOperations() {
return this.server.getPendingOperations();
}
/**
* {@inheritDoc}
*/
@Override
public long getLastStartupTimestamp() {
return server.getLastStartupTimestamp();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy