com.bytex.snamp.connector.dataStream.FlagAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of data-stream Show documentation
Show all versions of data-stream Show documentation
Framework for writing connectors based on message processing
The newest version!
package com.bytex.snamp.connector.dataStream;
import com.bytex.snamp.connector.attributes.AttributeDescriptor;
import com.bytex.snamp.connector.metrics.RatedFlagRecorder;
import com.bytex.snamp.instrumentation.measurements.BooleanMeasurement;
import com.bytex.snamp.instrumentation.measurements.jmx.ValueMeasurementNotification;
import org.osgi.framework.InvalidSyntaxException;
import javax.management.openmbean.CompositeData;
import javax.management.openmbean.CompositeType;
import static com.bytex.snamp.jmx.MetricsConverter.RATED_FLAG_TYPE;
import static com.bytex.snamp.jmx.MetricsConverter.fromRatedFlag;
/**
* Represents attribute which exposes {@link com.bytex.snamp.connector.metrics.RatedFlag}.
*/
final class FlagAttribute extends MetricHolderAttribute {
static final CompositeType TYPE = RATED_FLAG_TYPE;
static final String NAME = "flag";
private static final long serialVersionUID = -5234028741040752357L;
FlagAttribute(final String name, final AttributeDescriptor descriptor) throws InvalidSyntaxException {
super(ValueMeasurementNotification.class, name, TYPE, descriptor, RatedFlagRecorder::new);
}
@Override
CompositeData getValue(final RatedFlagRecorder metric) {
return fromRatedFlag(metric);
}
private static void updateMetric(final RatedFlagRecorder metric, final BooleanMeasurement measurement){
metric.updateValue(measurement::getValue);
}
@Override
void updateMetric(final RatedFlagRecorder metric, final ValueMeasurementNotification notification) {
extractMeasurementAndUpdateMetric(notification, BooleanMeasurement.class, metric, FlagAttribute::updateMetric);
}
@Override
protected boolean isNotificationEnabled(final ValueMeasurementNotification notification) {
return representsMeasurement(notification) && notification.isMeasurement(BooleanMeasurement.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy