Browse Source

Add a short README for the c++ dataflow example

tags/v0.0.0-test.4
Philipp Oppermann 3 years ago
parent
commit
bf1d9c5980
Failed to extract signature
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      examples/c++-dataflow/README.md

+ 5
- 0
examples/c++-dataflow/README.md View File

@@ -0,0 +1,5 @@
# Dora C++ Dataflow Example

This example shows how to create dora operators and custom nodes with C++.

Dora does not provide a C++ API yet, but we can create adapters for either the C or Rust API. The `operator-rust-api` and `node-rust-api` folders implement an example operator and node based on dora's Rust API, using the `cxx` crate for bridging. The `operator-c-api` and `node-c-api` show how to create operators and nodes based on dora's C API. Both approaches work, so you can choose the API that fits your application better.

Loading…
Cancel
Save