QtRestClient  3.0.0
A library for generic JSON-based REST-APIs, with a mechanism to map JSON to Qt objects
Public Slots | Properties | List of all members
de::skycoder42::QtRestClient::RestReply Class Reference

The QML version of QtRestClient::RestReply. More...

#include <qmlrestreply.h>

+ Inheritance diagram for de::skycoder42::QtRestClient::RestReply:

Public Slots

void addCompletedHandler (const QJSValue &completedHandler)
 Add a method to be called when the request has been completed. More...
 
void addSucceededHandler (const QJSValue &succeededHandler)
 Add a method to be called when the request has been completed successfully. More...
 
void addFailedHandler (const QJSValue &failedHandler)
 Add a method to be called if the request has failed. More...
 
void addErrorHandler (const QJSValue &errorHandler)
 Add a method to be called if an error occured. More...
 

Properties

QtRestClient::RestReply reply
 The original QtRestClient::RestReply that this one wrapps. More...
 

Detailed Description

The QML version of QtRestClient::RestReply.

Since
3.0

This is a special version that is returned by the RestClass to be able to set handlers. The original reply can be accessed via the RestReply::reply property.

Definition at line 22 of file qmlrestreply.h.

Member Function Documentation

◆ addCompletedHandler

void de::skycoder42::QtRestClient::RestReply::addCompletedHandler ( const QJSValue completedHandler)
slot

Add a method to be called when the request has been completed.

Parameters
completedHandlera JS callback to be called with the reply

The handlers arguments are:

  • The HTTP-Status code (int)

◆ addErrorHandler

void de::skycoder42::QtRestClient::RestReply::addErrorHandler ( const QJSValue errorHandler)
slot

Add a method to be called if an error occured.

Parameters
errorHandlera JS callback to be called with the reply

The handlers arguments are:

◆ addFailedHandler

void de::skycoder42::QtRestClient::RestReply::addFailedHandler ( const QJSValue failedHandler)
slot

Add a method to be called if the request has failed.

Parameters
failedHandlera JS callback to be called with the reply

The handlers arguments are:

  • The HTTP-Status code (int)
  • The deserialized Content of the reply (deserialized to a JS object)

◆ addSucceededHandler

void de::skycoder42::QtRestClient::RestReply::addSucceededHandler ( const QJSValue succeededHandler)
slot

Add a method to be called when the request has been completed successfully.

Parameters
succeededHandlera JS callback to be called with the reply

The handlers arguments are:

  • The HTTP-Status code (int)
  • The deserialized Content of the reply (deserialized to a JS object)

Property Documentation

◆ reply

QtRestClient::RestReply de::skycoder42::QtRestClient::RestReply::reply

The original QtRestClient::RestReply that this one wrapps.

Default: auto

Accessors
MEMBERreply
READ ONLY
See also
QtRestClient::RestReply

Definition at line 40 of file qmlrestreply.h.


The documentation for this class was generated from the following file: