#include <gio/gio.h>
#include <glib-object.h>
#include <gmodule.h>
#include "fl_binary_messenger.h"
#include "fl_method_channel.h"
#include "fl_method_response.h"
Go to the source code of this file.
Functions | |
G_BEGIN_DECLS G_MODULE_EXPORT | G_DECLARE_FINAL_TYPE (FlEventChannel, fl_event_channel, FL, EVENT_CHANNEL, GObject) typedef FlMethodErrorResponse *(*FlEventChannelHandler)(FlEventChannel *channel |
: a channel name. | |
fl_event_channel_new: @messenger: an #FlBinaryMessenger. @codec: the message codec. Creates an event channel. @codec must match the codec used on the Dart end of the channel. Returns: a new #FlEventChannel. | |
FlEventChannel * | fl_event_channel_new (FlBinaryMessenger *messenger, const gchar *name, FlMethodCodec *codec) |
void | fl_event_channel_set_stream_handlers (FlEventChannel *channel, FlEventChannelHandler listen_handler, FlEventChannelHandler cancel_handler, gpointer user_data, GDestroyNotify destroy_notify) |
gboolean | fl_event_channel_send (FlEventChannel *channel, FlValue *event, GCancellable *cancellable, GError **error) |
Variables | |
G_BEGIN_DECLS G_MODULE_EXPORT FlValue * | args |
G_BEGIN_DECLS G_MODULE_EXPORT FlValue gpointer | user_data |
FlEventChannel* fl_event_channel_new | ( | FlBinaryMessenger * | messenger, |
const gchar * | name, | ||
FlMethodCodec * | codec | ||
) |
Definition at line 159 of file fl_event_channel.cc.
References channel_closed_cb(), fl_binary_messenger_set_message_handler_on_channel(), and message_cb().
Referenced by TEST().
gboolean fl_event_channel_send | ( | FlEventChannel * | channel, |
FlValue * | event, | ||
GCancellable * | cancellable, | ||
GError ** | error | ||
) |
fl_event_channel_send: @channel: an #FlEventChannel. @event: event to send, must match what the #FlMethodCodec supports. @cancellable: (allow-none): a #GCancellable or NULL. @error: (allow-none): #GError location to store the error occurring, or NULL to ignore.
Sends an event on the channel. Events should only be sent once the channel is being listened to.
Returns: TRUE if successful.
Definition at line 196 of file fl_event_channel.cc.
References error, event, fl_binary_messenger_send_on_channel(), fl_method_codec_encode_success_envelope(), and TRUE.
Referenced by send_events_listen_cb().
void fl_event_channel_set_stream_handlers | ( | FlEventChannel * | channel, |
FlEventChannelHandler | listen_handler, | ||
FlEventChannelHandler | cancel_handler, | ||
gpointer | user_data, | ||
GDestroyNotify | destroy_notify | ||
) |
fl_event_channel_set_stream_handlers: @channel: an #FlEventChannel. @listen_handler: (allow-none): function to call when the Dart side of the channel starts listening to the stream. @cancel_handler: (allow-none): function to call when the Dart side of the channel cancels their subscription to the stream. @user_data: (closure): user data to pass to @listen_handler and @cancel_handler. @destroy_notify: (allow-none): a function which gets called to free @user_data, or NULL.
Sets the functions called when the Dart side requests the stream to start and finish.
The handlers are removed if the channel is closed or is replaced by another handler, set @destroy_notify if you want to detect this.
Definition at line 181 of file fl_event_channel.cc.
References remove_handlers(), and user_data.
Referenced by TEST().
G_BEGIN_DECLS G_MODULE_EXPORT G_DECLARE_FINAL_TYPE | ( | FlEventChannel | , |
fl_event_channel | , | ||
FL | , | ||
EVENT_CHANNEL | , | ||
GObject | |||
) |
FlEventChannel:
#FlEventChannel is an object that allows sending an events stream to Dart code over platform channels.
The following example shows how to send events on a channel:
|[ static FlEventChannel *channel = NULL; static gboolean send_events = FALSE;
static void event_occurs_cb (FooEvent *event) { if (send_events) { g_autoptr(FlValue) message = foo_event_to_value (event); g_autoptr(GError) error = NULL; if (!fl_event_channel_send (channel, message, NULL, &error)) { g_warning ("Failed to send event: %s", error->message); } } }
static FlMethodErrorResponse* listen_cb (FlEventChannel* channel, FlValue *args, gpointer user_data) { send_events = TRUE; return NULL; }
static FlMethodErrorResponse* cancel_cb (GObject *object, FlValue *args, gpointer user_data) { send_events = FALSE; return NULL; }
static void setup_channel () { g_autoptr(FlStandardMethodCodec) codec = fl_standard_method_codec_new (); channel = fl_event_channel_new (messenger, "flutter/foo", FL_METHOD_CODEC (codec)); fl_event_channel_set_stream_handlers (channel, listen_cb, cancel_cb, NULL, NULL); } ]|
#FlEventChannel matches the EventChannel class in the Flutter services library. FlEventChannelHandler: @channel: an #FlEventChannel. @args: arguments passed from the Dart end of the channel. @user_data: (closure): data provided when registering this handler.
Function called when the stream is listened to or cancelled.
Returns: (transfer full): an #FlMethodErrorResponse or NULL if no error.
G_BEGIN_DECLS G_MODULE_EXPORT FlValue* args |
Definition at line 89 of file fl_event_channel.h.
Referenced by activate_system_cursor(), args_cancel_cb(), args_listen_cb(), build_list(), build_map(), cancel_cancel_cb(), cancel_channel(), clipboard_get_data_async(), clipboard_set_data(), decode_error_method_call(), decode_method_call(), encode_method_call(), fl_engine_start(), fl_json_method_codec_decode_method_call(), fl_json_method_codec_decode_response(), fl_json_method_codec_encode_method_call(), fl_method_call_new(), fl_method_channel_invoke_method(), fl_method_codec_decode_method_call(), fl_method_codec_encode_method_call(), fl_standard_method_codec_decode_method_call(), fl_standard_method_codec_encode_method_call(), fl_test_application_activate(), fl_test_codec_decode_method_call(), fl_test_codec_encode_method_call(), handle_method_call(), listen_channel(), listen_listen_cb(), MethodCallMatcher::MatchAndExplain(), message_cb(), method_call_cb(), MethodCall(), perform_action(), request_app_exit(), resize_channel(), set_client(), set_editable_size_and_transform(), set_editing_state(), set_marked_text_rect(), set_warns_on_channel_overflow(), system_exit_application(), system_sound_play(), TEST(), test_method_codec_decode_method_call(), test_method_codec_encode_method_call(), update_editing_state(), and update_editing_state_with_delta().
G_BEGIN_DECLS G_MODULE_EXPORT FlValue gpointer user_data |
Definition at line 90 of file fl_event_channel.h.