SecureBlackbox 2020 Qt Edition

Questions / Feedback?

Wait Event

Fired periodically to show how much waiting time is left.

Syntax

class OAuthClientWaitEventParams {
public:
  int TimeLeft();
  bool Stop();
  void SetStop(bool bStop);
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void Wait(OAuthClientWaitEventParams *e);
// Or, subclass OAuthClient and override this emitter function. virtual int FireWait(OAuthClientWaitEventParams *e) {...}

Remarks

This event is fired after authorization is started, to show how much time is left to wait for server's response. Waiting can be cancelled by setting the Stop parameter to true, which will result in authorization failure.

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