Flutter Engine
The Flutter Engine
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
8#include "flutter/fml/platform/darwin/scoped_block.h"
9#include "flutter/fml/platform/darwin/scoped_nsobject.h"
10#include "flutter/fml/task_runner.h"
11#include "flutter/shell/common/platform_message_handler.h"
12#import "flutter/shell/platform/darwin/ios/flutter_task_queue_dispatch.h"
13
14namespace flutter {
15
17 public:
18 static NSObject<FlutterTaskQueue>* MakeBackgroundTaskQueue();
19
20 explicit PlatformMessageHandlerIos(fml::RefPtr<fml::TaskRunner> platform_task_runner);
21
22 void HandlePlatformMessage(std::unique_ptr<PlatformMessage> message) override;
23
25
26 void InvokePlatformMessageResponseCallback(int response_id,
27 std::unique_ptr<fml::Mapping> mapping) override;
28
29 void InvokePlatformMessageEmptyResponseCallback(int response_id) override;
30
31 void SetMessageHandler(const std::string& channel,
33 NSObject<FlutterTaskQueue>* task_queue);
34
35 struct HandlerInfo {
38 };
39
40 private:
41 std::unordered_map<std::string, HandlerInfo> message_handlers_;
42 const fml::RefPtr<fml::TaskRunner> platform_task_runner_;
43 std::mutex message_handlers_mutex_;
44 FML_DISALLOW_COPY_AND_ASSIGN(PlatformMessageHandlerIos);
45};
46
47} // namespace flutter
48
49#endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_PLATFORM_MESSAGE_HANDLER_IOS_H_
void(^ FlutterBinaryMessageHandler)(NSData *_Nullable message, FlutterBinaryReply reply)
PlatformMessageHandlerIos(fml::RefPtr< fml::TaskRunner > platform_task_runner)
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
Win32Message message
fml::ScopedBlock< FlutterBinaryMessageHandler > handler
fml::scoped_nsprotocol< NSObject< FlutterTaskQueueDispatch > * > task_queue