Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Public Attributes | List of all members
tonic::DartDispatcher< IndicesHolder< indices... >, void(C::*)(ArgTypes...)> Struct Template Reference

#include <dart_args.h>

Inheritance diagram for tonic::DartDispatcher< IndicesHolder< indices... >, void(C::*)(ArgTypes...)>:
tonic::DartArgHolder< indices, ArgTypes >

Public Types

using FunctionPtr = void(C::*)(ArgTypes...)
 
- Public Types inherited from tonic::DartArgHolder< indices, ArgTypes >
using ValueType = typename std::remove_const< typename std::remove_reference< ArgTypes >::type >::type
 

Public Member Functions

 DartDispatcher (DartArgIterator *it)
 
void Dispatch (FunctionPtr func)
 
- Public Member Functions inherited from tonic::DartArgHolder< indices, ArgTypes >
 DartArgHolder (DartArgIterator *it)
 

Public Attributes

DartArgIteratorit_
 
- Public Attributes inherited from tonic::DartArgHolder< indices, ArgTypes >
ValueType value
 

Detailed Description

template<size_t... indices, typename C, typename... ArgTypes>
struct tonic::DartDispatcher< IndicesHolder< indices... >, void(C::*)(ArgTypes...)>

Definition at line 149 of file dart_args.h.

Member Typedef Documentation

◆ FunctionPtr

template<size_t... indices, typename C , typename... ArgTypes>
using tonic::DartDispatcher< IndicesHolder< indices... >, void(C::*)(ArgTypes...)>::FunctionPtr = void (C::*)(ArgTypes...)

Definition at line 151 of file dart_args.h.

Constructor & Destructor Documentation

◆ DartDispatcher()

template<size_t... indices, typename C , typename... ArgTypes>
tonic::DartDispatcher< IndicesHolder< indices... >, void(C::*)(ArgTypes...)>::DartDispatcher ( DartArgIterator it)
inlineexplicit

Definition at line 155 of file dart_args.h.

156 : DartArgHolder<indices, ArgTypes>(it)..., it_(it) {}

Member Function Documentation

◆ Dispatch()

template<size_t... indices, typename C , typename... ArgTypes>
void tonic::DartDispatcher< IndicesHolder< indices... >, void(C::*)(ArgTypes...)>::Dispatch ( FunctionPtr  func)
inline

Definition at line 158 of file dart_args.h.

158 {
159 (GetReceiver<C>(it_->args())->*func)(
160 DartArgHolder<indices, ArgTypes>::value...);
161 }
Dart_NativeArguments args() const
Definition dart_args.h:39

Member Data Documentation

◆ it_

template<size_t... indices, typename C , typename... ArgTypes>
DartArgIterator* tonic::DartDispatcher< IndicesHolder< indices... >, void(C::*)(ArgTypes...)>::it_

Definition at line 153 of file dart_args.h.


The documentation for this struct was generated from the following file: