pips_publication

Updated: April 19, 2023

PiPS publication

Synopsis:

#include <pips/publication.h>
struct pips_publication {
    pips_publication_t* next;
    pips_topic_t* topic;
} ;

Data:

pips_publication_t* next
Next publication in a linked list
pips_topic_t* topic
Topic that's the object of the publication

Library:

pips-client

Description:

This data type groups a link to the next publication and the topic associated with the current publication with its opaque implementation data. The size of this structure is not specified, so no assumptions about it should be made by clients of the framework.