Rename SonarInitConfig
Summary: Part of sonar -> flipper rename Reviewed By: priteshrnandgaonkar Differential Revision: D9908472 fbshipit-source-id: f2e694b5abfa22a745ee4719d24d6aad8af6ee2a
This commit is contained in:
committed by
Facebook Github Bot
parent
9889df3f3c
commit
574c05c41d
45
xplat/Flipper/FlipperInitConfig.h
Normal file
45
xplat/Flipper/FlipperInitConfig.h
Normal file
@@ -0,0 +1,45 @@
|
||||
/*
|
||||
* Copyright (c) 2018-present, Facebook, Inc.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the LICENSE
|
||||
* file in the root directory of this source tree.
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <folly/io/async/EventBase.h>
|
||||
#include <map>
|
||||
|
||||
namespace facebook {
|
||||
namespace flipper {
|
||||
|
||||
struct DeviceData {
|
||||
std::string host;
|
||||
std::string os;
|
||||
std::string device;
|
||||
std::string deviceId;
|
||||
std::string app;
|
||||
std::string appId;
|
||||
std::string privateAppDirectory;
|
||||
};
|
||||
|
||||
struct FlipperInitConfig {
|
||||
/**
|
||||
Map of client specific configuration data such as app name, device name, etc.
|
||||
*/
|
||||
DeviceData deviceData;
|
||||
|
||||
/**
|
||||
EventBase on which client callbacks should be called.
|
||||
*/
|
||||
folly::EventBase* callbackWorker;
|
||||
|
||||
/**
|
||||
EventBase to be used to maintain the network connection.
|
||||
*/
|
||||
folly::EventBase* connectionWorker;
|
||||
};
|
||||
|
||||
} // namespace flipper
|
||||
} // namespace facebook
|
||||
Reference in New Issue
Block a user