Flutter Engine
 
Loading...
Searching...
No Matches
platform_message_handler_ios.h
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_PLATFORM_MESSAGE_HANDLER_IOS_H_
6#define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_PLATFORM_MESSAGE_HANDLER_IOS_H_
7
11
12namespace flutter {
13
15 public:
16 static NSObject<FlutterTaskQueue>* MakeBackgroundTaskQueue();
17
18 explicit PlatformMessageHandlerIos(fml::RefPtr<fml::TaskRunner> platform_task_runner);
19
20 void HandlePlatformMessage(std::unique_ptr<PlatformMessage> message) override;
21
23
24 void InvokePlatformMessageResponseCallback(int response_id,
25 std::unique_ptr<fml::Mapping> mapping) override;
26
27 void InvokePlatformMessageEmptyResponseCallback(int response_id) override;
28
29 void SetMessageHandler(const std::string& channel,
31 NSObject<FlutterTaskQueue>* task_queue);
32
33 struct HandlerInfo {
34 NSObject<FlutterTaskQueueDispatch>* task_queue;
36 };
37
38 private:
39 std::unordered_map<std::string, HandlerInfo> message_handlers_;
40 const fml::RefPtr<fml::TaskRunner> platform_task_runner_;
41 std::mutex message_handlers_mutex_;
43};
44
45} // namespace flutter
46
47#endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_PLATFORM_MESSAGE_HANDLER_IOS_H_
void(^ FlutterBinaryMessageHandler)(NSData *_Nullable message, FlutterBinaryReply reply)
void HandlePlatformMessage(std::unique_ptr< PlatformMessage > message) override
bool DoesHandlePlatformMessageOnPlatformThread() const override
void InvokePlatformMessageEmptyResponseCallback(int response_id) override
void SetMessageHandler(const std::string &channel, FlutterBinaryMessageHandler handler, NSObject< FlutterTaskQueue > *task_queue)
static NSObject< FlutterTaskQueue > * MakeBackgroundTaskQueue()
void InvokePlatformMessageResponseCallback(int response_id, std::unique_ptr< fml::Mapping > mapping) override
const gchar * channel
const gchar FlBinaryMessengerMessageHandler handler
G_BEGIN_DECLS GBytes * message
#define FML_DISALLOW_COPY_AND_ASSIGN(TypeName)
Definition macros.h:27