Unsubscribed Event

Fired when the class has unsubscribed from a message destination on the server.

Syntax

class STOMPUnsubscribedEventParams {
public:
  const QString &Id();
  const QString &Destination();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void Unsubscribed(STOMPUnsubscribedEventParams *e);
// Or, subclass STOMP and override this emitter function. virtual int FireUnsubscribed(STOMPUnsubscribedEventParams *e) {...}

Remarks

This event fires each time the class has unsubscribed from a message destination on the server. The following parameters are available within this event:

  • Id: The Id that was used to identify the subscription.
  • Destination: The message destination on the server which the subscription was associated with.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks IoT 2020 Qt Edition - Version 20.0 [Build 8265]