Status Update: 2022-06-22 #31
Replies: 3 comments 1 reply
-
OpenAtom Contest Proposal |
Beta Was this translation helpful? Give feedback.
-
Implementation UpdatesAdd Opentelemetry capabilities though capnproto messagesCreate a C-API for operators and an example operatorC operators need to implement the following header file: int dora_init_operator(void **operator_context);
void dora_drop_operator(void *operator_context);
int dora_on_input(
const char *id_start,
unsigned int id_len,
const char *data_start,
unsigned int data_len,
const int (*output_fn_raw)(const char *id_start,
unsigned int id_len,
const char *data_start,
unsigned int data_len,
const void *output_context),
void *output_context,
const void *operator_context); Implementation in #29 Add initial support for Python operators in runtimePython operators are required to use the following interface:
Operator classes can use normal fields for storing state between calls. The Implementation in #30 Updated
|
Beta Was this translation helpful? Give feedback.
-
Plans for 0.1 releaseWe track the remaining TODO items in this issue: #12
We also plan to make the dora-rs repo public. For that, we will add a |
Beta Was this translation helpful? Give feedback.
-
In this discussion, we describe our recent progress and the main topics that we would like to discuss in today's meeting. We use a separate post for each topic to keep the discussion focused. Feel free to create new posts for topics that are not mentioned yet.
Beta Was this translation helpful? Give feedback.
All reactions