Package org.collectd.api

Examples of org.collectd.api.Notification


            }
            else if (type == Network.TYPE_TYPE_INSTANCE) {
                obj.pd.setTypeInstance (readString (is, len));
            }
            else if (type == Network.TYPE_MESSAGE) {
                Notification notif = obj.getNotification();
                notif.setMessage (readString(is, len));
                if (_dispatcher != null) {
                    _dispatcher.dispatch(notif);
                }
            }
            else if (type == Network.TYPE_SEVERITY) {
View Full Code Here


            return vl;
        }

        Notification getNotification() {
            if (notif == null) {
                notif = new Notification(pd);
                pd = notif;
            }
            return notif;
        }
View Full Code Here

TOP

Related Classes of org.collectd.api.Notification

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.