Flutter iOS Embedder
FlutterCallbackCache.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_FRAMEWORK_HEADERS_FLUTTERCALLBACKCACHE_H_
6 #define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERCALLBACKCACHE_H_
7 
8 #import <Foundation/Foundation.h>
9 
10 #import "FlutterMacros.h"
11 
12 /**
13  * An object containing the result of `FlutterCallbackCache`'s `lookupCallbackInformation`
14  * method.
15  */
17 @interface FlutterCallbackInformation : NSObject
18 /**
19  * The name of the callback.
20  */
21 @property(copy) NSString* callbackName;
22 /**
23  * The class name of the callback.
24  */
25 @property(copy) NSString* callbackClassName;
26 /**
27  * The library path of the callback.
28  */
29 @property(copy) NSString* callbackLibraryPath;
30 @end
31 
32 /**
33  * The cache containing callback information for spawning a
34  * `FlutterHeadlessDartRunner`.
35  */
37 @interface FlutterCallbackCache : NSObject
38 /**
39  * Returns the callback information for the given callback handle.
40  * This callback information can be used when spawning a
41  * `FlutterHeadlessDartRunner`.
42  *
43  * @param handle The handle for a callback, provided by the
44  * Dart method `PluginUtilities.getCallbackHandle`.
45  * @return A `FlutterCallbackInformation` object which contains the name of the
46  * callback, the name of the class in which the callback is defined, and the
47  * path of the library which contains the callback. If the provided handle is
48  * invalid, nil is returned.
49  */
50 + (FlutterCallbackInformation*)lookupCallbackInformation:(int64_t)handle;
51 
52 @end
53 
54 #endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_HEADERS_FLUTTERCALLBACKCACHE_H_
FlutterCallbackInformation::callbackLibraryPath
NSString * callbackLibraryPath
Definition: FlutterCallbackCache.h:29
FlutterCallbackCache
Definition: FlutterCallbackCache.h:37
FlutterMacros.h
FlutterCallbackInformation::callbackName
NSString * callbackName
Definition: FlutterCallbackCache.h:21
FLUTTER_DARWIN_EXPORT
#define FLUTTER_DARWIN_EXPORT
Definition: FlutterMacros.h:14
FlutterCallbackInformation::callbackClassName
NSString * callbackClassName
Definition: FlutterCallbackCache.h:25
FlutterCallbackInformation
Definition: FlutterCallbackCache.h:17