Exemplo n.º 1
0
 protected Pumppeteer(MqttConfigurationBase configuration) : base(configuration)
 {
 }
Exemplo n.º 2
0
 /// <summary>
 /// Instantiates a new <see cref="MemoryPacketStore"/>.
 /// </summary>
 /// <param name="config">The configuration of the mqtt client.</param>
 /// <param name="packetIdMaxValue">The maximum id supported by the protocol.</param>
 public MemoryPacketStore(ProtocolConfiguration protocolConfiguration, MqttConfigurationBase config, int packetIdMaxValue)
     : base(packetIdMaxValue, config)
 {
     _protocolConfig = protocolConfiguration;
 }