diff --git a/assignment-client/src/Agent.h b/assignment-client/src/Agent.h index 00ef034ad5..0fc3fbe1f9 100644 --- a/assignment-client/src/Agent.h +++ b/assignment-client/src/Agent.h @@ -75,6 +75,7 @@ public: public slots: /**jsdoc * @function Agent.run + * @deprecated This function is being removed from the API. */ void run() override; diff --git a/libraries/networking/src/ThreadedAssignment.h b/libraries/networking/src/ThreadedAssignment.h index d19617357b..9372cfa667 100644 --- a/libraries/networking/src/ThreadedAssignment.h +++ b/libraries/networking/src/ThreadedAssignment.h @@ -35,16 +35,19 @@ public slots: /**jsdoc * @function Agent.stop + * @deprecated This function is being removed from the API. */ Q_INVOKABLE virtual void stop() { setFinished(true); } /**jsdoc * @function Agent.sendStatsPacket + * @deprecated This function is being removed from the API. */ virtual void sendStatsPacket(); /**jsdoc * @function Agent.clearQueuedCheckIns + * @deprecated This function is being removed from the API. */ void clearQueuedCheckIns() { _numQueuedCheckIns = 0; } @@ -52,6 +55,7 @@ signals: /**jsdoc * @function Agent.finished * @returns {Signal} + * @deprecated This function is being removed from the API. */ void finished(); @@ -66,6 +70,7 @@ protected: protected slots: /**jsdoc * @function Agent.domainSettingsRequestFailed + * @deprecated This function is being removed from the API. */ void domainSettingsRequestFailed();