Summary: This change isolates the usage of folly async from Flipper. Is now self-contained in Flipper Folly schedulers. Users of Flipper can decide not to use the types defined in that header and implement their own. NOTE: changes are minimal, we are just replacing direct calls to folly event base with a scheduler which simply relays this on to folly. Reviewed By: fabiomassimo Differential Revision: D36052198 fbshipit-source-id: 170d64a324a1f1f100224e2622a59cbac3c8b642
50 lines
980 B
C++
50 lines
980 B
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* 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 <map>
|
|
#include "FlipperScheduler.h"
|
|
|
|
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;
|
|
|
|
/**
|
|
Scheduler on which client callbacks should be called.
|
|
*/
|
|
Scheduler* callbackWorker;
|
|
|
|
/**
|
|
Scheduler to be used to maintain the network connection.
|
|
*/
|
|
Scheduler* connectionWorker;
|
|
|
|
int insecurePort = 9089;
|
|
int securePort = 9088;
|
|
int altInsecurePort = 9089;
|
|
int altSecurePort = 9088;
|
|
};
|
|
|
|
} // namespace flipper
|
|
} // namespace facebook
|