123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- /*
- Copyright (c) 2013, 2014 Paolo Patierno
- All rights reserved. This program and the accompanying materials
- are made available under the terms of the Eclipse Public License v1.0
- and Eclipse Distribution License v1.0 which accompany this distribution.
- The Eclipse Public License is available at
- http://www.eclipse.org/legal/epl-v10.html
- and the Eclipse Distribution License is available at
- http://www.eclipse.org/org/documents/edl-v10.php.
- Contributors:
- Paolo Patierno - initial API and implementation and/or initial documentation
- */
- #if (!MF_FRAMEWORK_VERSION_V4_2 && !MF_FRAMEWORK_VERSION_V4_3)
- using System;
- #else
- using Microsoft.SPOT;
- #endif
- namespace uPLibrary.Networking.M2Mqtt.Messages
- {
- /// <summary>
- /// Event Args class for PUBLISH message received from broker
- /// </summary>
- public class MqttMsgPublishEventArgs : EventArgs
- {
- #region Properties...
- /// <summary>
- /// Message topic
- /// </summary>
- public string Topic
- {
- get { return this.topic; }
- internal set { this.topic = value; }
- }
- /// <summary>
- /// Message data
- /// </summary>
- public byte[] Message
- {
- get { return this.message; }
- internal set { this.message = value; }
- }
- /// <summary>
- /// Duplicate message flag
- /// </summary>
- public bool DupFlag
- {
- get { return this.dupFlag; }
- set { this.dupFlag = value; }
- }
- /// <summary>
- /// Quality of Service level
- /// </summary>
- public byte QosLevel
- {
- get { return this.qosLevel; }
- internal set { this.qosLevel = value; }
- }
- /// <summary>
- /// Retain message flag
- /// </summary>
- public bool Retain
- {
- get { return this.retain; }
- internal set { this.retain = value; }
- }
- #endregion
- // message topic
- private string topic;
- // message data
- private byte[] message;
- // duplicate delivery
- private bool dupFlag;
- // quality of service level
- private byte qosLevel;
- // retain flag
- private bool retain;
- /// <summary>
- /// Constructor
- /// </summary>
- /// <param name="topic">Message topic</param>
- /// <param name="message">Message data</param>
- /// <param name="dupFlag">Duplicate delivery flag</param>
- /// <param name="qosLevel">Quality of Service level</param>
- /// <param name="retain">Retain flag</param>
- public MqttMsgPublishEventArgs(string topic,
- byte[] message,
- bool dupFlag,
- byte qosLevel,
- bool retain)
- {
- this.topic = topic;
- this.message = message;
- this.dupFlag = dupFlag;
- this.qosLevel = qosLevel;
- this.retain = retain;
- }
- }
- }
|