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

org.somda.sdc.biceps.common.event.AbstractMdibAccessMessage Maven / Gradle / Ivy

Go to download

SDCri is a set of Java libraries that implements a network communication framework conforming with the IEEE 11073 SDC specifications. This project implements the functionality described in IEEE 11073-10207.

There is a newer version: 5.1.1
Show newest version
package org.somda.sdc.biceps.common.event;

import org.somda.sdc.biceps.common.access.MdibAccess;

/**
 * Abstract message definition that provides MDIB access.
 * 

* Getting the MDIB access during an event call allows to access the MDIB without storing a reference to it in the * processing class. * Attention: the MDIB access is supposed to be used only during the event callback as the data is subject to be * changed after the callback has ended. */ public abstract class AbstractMdibAccessMessage { private final MdibAccess mdibAccess; /** * Constructor that accepts the MDIB access to be provided by {@link #getMdibAccess()}. * * @param mdibAccess the MDIB access to provide. */ protected AbstractMdibAccessMessage(MdibAccess mdibAccess) { this.mdibAccess = mdibAccess; } public MdibAccess getMdibAccess() { return mdibAccess; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy