Code

plugin: Drop support for the old timeseries fetcher.
[sysdb.git] / src / include / core / plugin.h
index 5a26c39fb78b10f503667b9060e4d20f01416746..b12af783adc5f5cb4414496ef0d12704586684e2 100644 (file)
@@ -123,9 +123,6 @@ typedef int (*sdb_plugin_shutdown_cb)(sdb_object_t *user_data);
 typedef int (*sdb_plugin_log_cb)(int prio, const char *msg,
                sdb_object_t *user_data);
 
-typedef sdb_timeseries_t *(*sdb_plugin_fetch_ts_cb)(const char *id,
-               sdb_timeseries_opts_t *opts, sdb_object_t *user_data);
-
 /*
  * sdb_plugin_register_config:
  * Register a "config" function. This will be used to pass on the
@@ -257,9 +254,6 @@ sdb_plugin_register_log(const char *name, sdb_plugin_log_cb callback,
  *    use the object for other purposes, it should thus deref it.
  */
 int
-sdb_plugin_register_ts_fetcher(const char *name,
-               sdb_plugin_fetch_ts_cb callback, sdb_object_t *user_data);
-int
 sdb_plugin_register_timeseries_fetcher(const char *name,
                sdb_timeseries_fetcher_t *fetcher, sdb_object_t *user_data);