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

com.fasterxml.clustermate.service.servlet.ServletWithMetricsBase Maven / Gradle / Ivy

There is a newer version: 0.10.5
Show newest version
package com.fasterxml.clustermate.service.servlet;

import com.fasterxml.clustermate.service.SharedServiceStuff;
import com.fasterxml.clustermate.service.cluster.ClusterViewByServer;
import com.fasterxml.clustermate.service.metrics.AllOperationMetrics;

/**
 * Intermediate class we use to denote servlets that are to provide
 * metrics information.
 */
@SuppressWarnings("serial")
public abstract class ServletWithMetricsBase
    extends ServletBase
    implements AllOperationMetrics.Provider
{
    protected ServletWithMetricsBase(SharedServiceStuff stuff,
            ClusterViewByServer clusterView, String servletPathBase)
    {
        super(stuff, clusterView, servletPathBase);
    }
    
    @Override
    public abstract void fillOperationMetrics(AllOperationMetrics metrics);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy