2018-09-11 22:27:47 +00:00
|
|
|
// Copyright (c) Facebook, Inc. and its affiliates.
|
2018-05-31 22:31:03 +00:00
|
|
|
|
|
|
|
// This source code is licensed under the MIT license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree.
|
2016-05-04 02:29:58 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-06-23 23:49:55 +00:00
|
|
|
#include <map>
|
2016-05-04 02:29:58 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <folly/dynamic.h>
|
|
|
|
|
|
|
|
namespace facebook {
|
|
|
|
namespace react {
|
|
|
|
|
|
|
|
struct MethodCall {
|
|
|
|
int moduleId;
|
|
|
|
int methodId;
|
|
|
|
folly::dynamic arguments;
|
|
|
|
int callId;
|
|
|
|
|
2017-06-23 23:49:55 +00:00
|
|
|
MethodCall(int mod, int meth, folly::dynamic&& args, int cid)
|
2016-05-04 02:29:58 +00:00
|
|
|
: moduleId(mod)
|
|
|
|
, methodId(meth)
|
|
|
|
, arguments(std::move(args))
|
|
|
|
, callId(cid) {}
|
|
|
|
};
|
|
|
|
|
2018-11-15 05:14:23 +00:00
|
|
|
/// \throws std::invalid_argument
|
|
|
|
std::vector<MethodCall> parseMethodCalls(folly::dynamic&& calls);
|
2016-05-04 02:29:58 +00:00
|
|
|
|
|
|
|
} }
|