Skip to content

API updates for JrtcApp #20

Description

@matthewbalkwill

Add further abstraction to JrtcApp in order to simplify developer experience.

For instance,
jrtc_router_stream_id_t sid = jrtc_app_get_stream(state->app, SIMPLE_INPUT_IN_SIDX);
int res = jrtc_router_channel_send_input_msg(sid, &aggregate_counter, sizeof(aggregate_counter));
will be changed to:-
int res = jrtc_app_router_channel_send_input_msg(state->app, SIMPLE_INPUT_IN_SIDX, &aggregate_counter, sizeof(aggregate_counter));

Furthermore, update docs to detail that the use of JrtcApps should be the standard development model for apps, as opposed to using the "native" experience.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Labels

No labels
No labels

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions