lib: rename "self comp. input port message iter." -> "message iterator"
[babeltrace.git] / src / plugins / ctf / fs-sink / fs-sink.h
index ccdf3b3c7482c0685c50890ef44abbea71c8d8f3..f4861cdf75145d8cd660eaf49d7a3062d375785d 100644 (file)
 
 struct fs_sink_comp {
        bt_logging_level log_level;
-       bt_self_component_sink *self_comp;
+       bt_self_component *self_comp;
 
        /* Owned by this */
-       bt_self_component_port_input_message_iterator *upstream_iter;
+       bt_message_iterator *upstream_iter;
 
        /* Base output directory path */
        GString *output_dir_path;
@@ -66,17 +66,18 @@ struct fs_sink_comp {
 };
 
 BT_HIDDEN
-bt_self_component_status ctf_fs_sink_init(
+bt_component_class_initialize_method_status ctf_fs_sink_init(
                bt_self_component_sink *component,
+               bt_self_component_sink_configuration *config,
                const bt_value *params,
                void *init_method_data);
 
 BT_HIDDEN
-bt_self_component_status ctf_fs_sink_consume(
+bt_component_class_sink_consume_method_status ctf_fs_sink_consume(
                bt_self_component_sink *component);
 
 BT_HIDDEN
-bt_self_component_status ctf_fs_sink_graph_is_configured(
+bt_component_class_sink_graph_is_configured_method_status ctf_fs_sink_graph_is_configured(
                bt_self_component_sink *component);
 
 BT_HIDDEN
This page took 0.025433 seconds and 4 git commands to generate.