2016-05-04 02:29:58 +00:00
|
|
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
#include <folly/dynamic.h>
|
|
|
|
|
|
|
|
namespace facebook {
|
|
|
|
namespace react {
|
|
|
|
|
|
|
|
struct MethodCall {
|
|
|
|
int moduleId;
|
|
|
|
int methodId;
|
|
|
|
folly::dynamic arguments;
|
|
|
|
int callId;
|
|
|
|
|
|
|
|
MethodCall(int mod, int meth, folly::dynamic args, int cid)
|
|
|
|
: moduleId(mod)
|
|
|
|
, methodId(meth)
|
|
|
|
, arguments(std::move(args))
|
|
|
|
, callId(cid) {}
|
|
|
|
};
|
|
|
|
|
2016-06-16 23:00:22 +00:00
|
|
|
std::vector<MethodCall> parseMethodCalls(const std::string& json) throw(std::invalid_argument);
|
2016-05-04 02:29:58 +00:00
|
|
|
|
|
|
|
} }
|