Skip to content

Commit

Permalink
Documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
boazsegev committed Aug 2, 2024
1 parent cdb7db7 commit 1feebdf
Show file tree
Hide file tree
Showing 8 changed files with 2,313 additions and 267 deletions.
5 changes: 3 additions & 2 deletions fio-stl.h
Original file line number Diff line number Diff line change
Expand Up @@ -33970,7 +33970,8 @@ typedef struct fio_pubsub_engine_s fio_pubsub_engine_s;
typedef struct fio_publish_args_s {
/** The pub/sub engine that should be used to forward this message. */
fio_pubsub_engine_s const *engine;
/** If `from` is specified, it will be skipped (won't receive message). */
/** If `from` is specified, it will be skipped (won't receive message)
* UNLESS a non-native `engine` is specified. */
fio_s *from;
/** Message ID (if missing, a random ID will be generated). */
uint64_t id;
Expand Down Expand Up @@ -35665,7 +35666,7 @@ static void fio___pubsub_mock_sub_unsub(const fio_pubsub_engine_s *eng,
}
static void fio___pubsub_mock_publish(const fio_pubsub_engine_s *eng,
fio_msg_s *msg) {
(void)eng, (void)msg;
(void)eng, (void)msg; /* TODO:? sensible default? publish to cluster? */
}

static void fio___pubsub_attach_task(void *engine_, void *ignr_) {
Expand Down
Loading

0 comments on commit 1feebdf

Please sign in to comment.