This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-core/server/jsonrpc/actionhandler.h
Michael Zanetti 02c8e6e4b4 reworked jsonrpc server.
added introspection
all calls and responses have now param validation
2014-01-20 01:13:43 +01:00

18 lines
316 B
C++

#ifndef ACTIONHANDLER_H
#define ACTIONHANDLER_H
#include "jsonhandler.h"
class ActionHandler : public JsonHandler
{
Q_OBJECT
public:
explicit ActionHandler(QObject *parent = 0);
QString name() const;
Q_INVOKABLE QVariantMap ExecuteAction(const QVariantMap &params);
};
#endif // ACTIONHANDLER_H