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

joynr.provider.ProviderAttributeNotifyRead.js Maven / Gradle / Ivy

/*
 * #%L
 * %%
 * Copyright (C) 2011 - 2015 BMW Car IT GmbH
 * %%
 * 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.
 * #L%
 */

define("joynr/provider/ProviderAttributeNotifyRead", [ "joynr/provider/ProviderAttribute"
], function(ProviderAttribute) {

    /**
     * Constructor of ProviderAttribute* object that is used in the generation of provider objects
     *
     * @constructor
     * @name ProviderAttributeNotifyRead
     *
     * @param {Object}
     *            parent is the provider object that contains this attribute
     * @param {Object}
     *            [implementation] the definition of attribute implementation
     * @param {Function}
     *            [implementation.set] the getter function with the signature "function(value){}"
     *            that stores the given attribute value
     * @param {Function}
     *            [implementation.get] the getter function with the signature "function(){}" that
     *            returns the current attribute value
     * @param {String}
     *            attributeName the name of the attribute
     * @param {String}
     *            attributeType the type of the attribute
     */
    function ProviderAttributeNotifyRead(parent, implementation, attributeName, attributeType) {
        if (!(this instanceof ProviderAttributeNotifyRead)) {
            // in case someone calls constructor without new keyword (e.g. var c = Constructor({..}))
            return new ProviderAttributeNotifyRead(
                    parent,
                    implementation,
                    attributeName,
                    attributeType);
        }

        var providerAttribute =
                new ProviderAttribute(
                        parent,
                        implementation,
                        attributeName,
                        attributeType,
                        "NOTIFYREAD");

        /**
         * Registers the getter function for this attribute
         *
         * @name ProviderAttributeNotifyRead#registerGetter
         * @function
         *
         * @param {Function}
         *            getterFunc the getter function with the signature '{?} getterFunc() {..}'
         */
        this.registerGetter = function registerGetter(getterFunc) {
            return providerAttribute.registerGetter(getterFunc);
        };

        /**
         * Calls through the getter registered with registerGetter
         *
         * @name ProviderAttributeNotifyRead#get
         * @function
         *
         * @returns {?} the attribute value
         *
         * @see ProviderAttributeNotifyRead#registerGetter
         */
        this.get = function get() {
            return providerAttribute.get();
        };

        /**
         * If the attribute is changed, the application must call this function with the new value,
         * which causes the new value to be published to subscribers.
         *
         * @name ProviderAttributeNotifyRead#valueChanged
         * @function
         *
         * @param {?}
         *            value the new value of the attribute
         * @see ProviderAttributeNotifyRead#registerObserver
         * @see ProviderAttributeNotifyRead#unregisterObserver
         */
        this.valueChanged = function valueChanged(value) {
            providerAttribute.valueChanged(value);
        };

        /**
         * Registers an Observer for value changes
         *
         * @name ProviderAttributeNotifyRead#registerObserver
         * @function
         *
         * @param {Function}
         *            observer the callback function with the signature "function(value){..}"
         * @see ProviderAttributeNotifyRead#valueChanged
         * @see ProviderAttributeNotifyRead#unregisterObserver
         */
        this.registerObserver = function registerObserver(observer) {
            providerAttribute.registerObserver(observer);
        };

        /**
         * Unregisters an Observer for value changes
         *
         * @name ProviderAttributeNotifyRead#unregisterObserver
         * @function
         *
         * @param {Function}
         *            observer the callback function with the signature "function(value){..}"
         * @see ProviderAttributeNotifyRead#valueChanged
         * @see ProviderAttributeNotifyRead#registerObserver
         */
        this.unregisterObserver = function unregisterObserver(observer) {
            providerAttribute.unregisterObserver(observer);
        };

        /**
         * See [ProviderAttribute.checkGet]{@link ProviderAttribute#checkGet}
         *
         * @function ProviderAttributeNotifyRead#check
         *
         * @returns {Boolean}
         */
        this.check = function check() {
            return providerAttribute.checkGet();
        };

        return Object.freeze(this);
    }

    return ProviderAttributeNotifyRead;

});




© 2015 - 2025 Weber Informatics LLC | Privacy Policy