No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

33 líneas
698 B

  1. namespace MQTTnet.Client
  2. {
  3. public class MqttPacketIdentifierProvider
  4. {
  5. private readonly object _syncRoot = new object();
  6. private ushort _value;
  7. public void Reset()
  8. {
  9. lock (_syncRoot)
  10. {
  11. _value = 0;
  12. }
  13. }
  14. public ushort GetNewPacketIdentifier()
  15. {
  16. lock (_syncRoot)
  17. {
  18. _value++;
  19. if (_value == 0)
  20. {
  21. // As per official MQTT documentation the package identifier should never be 0.
  22. _value = 1;
  23. }
  24. return _value;
  25. }
  26. }
  27. }
  28. }