@@ -148,7 +148,7 @@ typedef SSIZE_T ssize_t;
148
148
* @remark This value should only be used during compile time,
149
149
* for runtime checks of version use rd_kafka_version()
150
150
*/
151
- #define RD_KAFKA_VERSION 0x010400ff
151
+ #define RD_KAFKA_VERSION 0x010402ff
152
152
153
153
/**
154
154
* @brief Returns the librdkafka version as integer.
@@ -1332,7 +1332,7 @@ void rd_kafka_message_destroy(rd_kafka_message_t *rkmessage);
1332
1332
* @remark This function MUST NOT be used with the producer.
1333
1333
*/
1334
1334
static RD_INLINE const char *
1335
- RD_UNUSED
1335
+ RD_UNUSED
1336
1336
rd_kafka_message_errstr (const rd_kafka_message_t * rkmessage ) {
1337
1337
if (!rkmessage -> err )
1338
1338
return NULL ;
@@ -1439,17 +1439,19 @@ RD_EXPORT size_t rd_kafka_header_cnt (const rd_kafka_headers_t *hdrs);
1439
1439
* find out if a produced message was persisted in the topic log.
1440
1440
*/
1441
1441
typedef enum {
1442
- /**< Message was never transmitted to the broker, or failed with
1443
- * an error indicating it was not written to the log.
1444
- * Application retry risks ordering, but not duplication. */
1442
+ /** Message was never transmitted to the broker, or failed with
1443
+ * an error indicating it was not written to the log.
1444
+ * Application retry risks ordering, but not duplication. */
1445
1445
RD_KAFKA_MSG_STATUS_NOT_PERSISTED = 0 ,
1446
1446
1447
- /**< Message was transmitted to broker, but no acknowledgement was
1448
- * received.
1449
- * Application retry risks ordering and duplication. */
1447
+ /** Message was transmitted to broker, but no acknowledgement was
1448
+ * received.
1449
+ * Application retry risks ordering and duplication. */
1450
1450
RD_KAFKA_MSG_STATUS_POSSIBLY_PERSISTED = 1 ,
1451
1451
1452
- /**< Message was written to the log and acknowledged by the broker. */
1452
+ /** Message was written to the log and acknowledged by the broker.
1453
+ * No reason for application to retry.
1454
+ * Note: this value should only be trusted with \c acks=all. */
1453
1455
RD_KAFKA_MSG_STATUS_PERSISTED = 2
1454
1456
} rd_kafka_msg_status_t ;
1455
1457
@@ -1501,7 +1503,7 @@ typedef enum {
1501
1503
* errstr, sizeof(errstr));
1502
1504
* if (res != RD_KAFKA_CONF_OK)
1503
1505
* die("%s\n", errstr);
1504
- *
1506
+ *
1505
1507
* rk = rd_kafka_new(..., myconf);
1506
1508
* @endcode
1507
1509
*
@@ -1740,7 +1742,7 @@ void rd_kafka_conf_set_consume_cb (rd_kafka_conf_t *conf,
1740
1742
* of the list (see `rd_kafka_topic_partition_list_copy()`).
1741
1743
* The result of `rd_kafka_position()` is typically outdated in
1742
1744
* RD_KAFKA_RESP_ERR__ASSIGN_PARTITIONS.
1743
- *
1745
+ *
1744
1746
* The following example shows the application's responsibilities:
1745
1747
* @code
1746
1748
* static void rebalance_cb (rd_kafka_t *rk, rd_kafka_resp_err_t err,
@@ -1924,15 +1926,15 @@ void rd_kafka_conf_set_stats_cb(rd_kafka_conf_t *conf,
1924
1926
* sasl.oauthbearer.config.
1925
1927
* \p opaque - Application-provided opaque set via
1926
1928
* rd_kafka_conf_set_opaque()
1927
- *
1929
+ *
1928
1930
* The SASL/OAUTHBEARER token refresh callback is triggered via rd_kafka_poll()
1929
1931
* whenever OAUTHBEARER is the SASL mechanism and a token needs to be retrieved,
1930
1932
* typically based on the configuration defined in \c sasl.oauthbearer.config.
1931
- *
1933
+ *
1932
1934
* The callback should invoke rd_kafka_oauthbearer_set_token()
1933
1935
* or rd_kafka_oauthbearer_set_token_failure() to indicate success
1934
1936
* or failure, respectively.
1935
- *
1937
+ *
1936
1938
* The refresh operation is eventable and may be received via
1937
1939
* rd_kafka_queue_poll() with an event type of
1938
1940
* \c RD_KAFKA_EVENT_OAUTHBEARER_TOKEN_REFRESH.
@@ -2675,7 +2677,7 @@ rd_kafka_type_t rd_kafka_type(const rd_kafka_t *rk);
2675
2677
2676
2678
2677
2679
/**
2678
- * @brief Returns this client's broker-assigned group member id
2680
+ * @brief Returns this client's broker-assigned group member id.
2679
2681
*
2680
2682
* @remark This currently requires the high-level KafkaConsumer
2681
2683
*
@@ -3015,7 +3017,7 @@ rd_kafka_queue_t *rd_kafka_queue_get_consumer (rd_kafka_t *rk);
3015
3017
* Use rd_kafka_queue_destroy() to loose the reference.
3016
3018
*
3017
3019
* @remark rd_kafka_queue_destroy() MUST be called on this queue
3018
- *
3020
+ *
3019
3021
* @remark This function only works on consumers.
3020
3022
*/
3021
3023
RD_EXPORT
@@ -3054,7 +3056,7 @@ rd_kafka_queue_t *rd_kafka_queue_get_background (rd_kafka_t *rk);
3054
3056
* If \p dst is \c NULL the forwarding is removed.
3055
3057
*
3056
3058
* The internal refcounts for both queues are increased.
3057
- *
3059
+ *
3058
3060
* @remark Regardless of whether \p dst is NULL or not, after calling this
3059
3061
* function, \p src will not forward it's fetch queue to the consumer
3060
3062
* queue.
@@ -3864,7 +3866,7 @@ rd_kafka_consumer_group_metadata_read (
3864
3866
* See `rd_kafka_conf_set_dr_msg_cb` on how to setup a callback to be called
3865
3867
* once the delivery status (success or failure) is known. The delivery report
3866
3868
* is trigged by the application calling `rd_kafka_poll()` (at regular
3867
- * intervals) or `rd_kafka_flush()` (at termination).
3869
+ * intervals) or `rd_kafka_flush()` (at termination).
3868
3870
*
3869
3871
* Since producing is asynchronous, you should call `rd_kafka_flush()` before
3870
3872
* you destroy the producer. Otherwise, any outstanding messages will be
@@ -3894,14 +3896,14 @@ rd_kafka_consumer_group_metadata_read (
3894
3896
* Messages are considered in-queue from the point they
3895
3897
* are accepted by produce() until their corresponding
3896
3898
* delivery report callback/event returns.
3897
- * It is thus a requirement to call
3899
+ * It is thus a requirement to call
3898
3900
* rd_kafka_poll() (or equiv.) from a separate
3899
3901
* thread when F_BLOCK is used.
3900
3902
* See WARNING on \c RD_KAFKA_MSG_F_BLOCK above.
3901
3903
*
3902
3904
* RD_KAFKA_MSG_F_FREE - rdkafka will free(3) \p payload when it is done
3903
3905
* with it.
3904
- * RD_KAFKA_MSG_F_COPY - the \p payload data will be copied and the
3906
+ * RD_KAFKA_MSG_F_COPY - the \p payload data will be copied and the
3905
3907
* \p payload pointer will not be used by rdkafka
3906
3908
* after the call returns.
3907
3909
* RD_KAFKA_MSG_F_PARTITION - produce_batch() will honour per-message
@@ -5482,7 +5484,7 @@ rd_kafka_topic_result_error_string (const rd_kafka_topic_result_t *topicres);
5482
5484
/**
5483
5485
* @returns the name of the topic for the given topic result.
5484
5486
* @remark lifetime of the returned string is the same as the \p topicres.
5485
- *
5487
+ *
5486
5488
*/
5487
5489
RD_EXPORT const char *
5488
5490
rd_kafka_topic_result_name (const rd_kafka_topic_result_t * topicres );
@@ -5493,7 +5495,6 @@ rd_kafka_topic_result_name (const rd_kafka_topic_result_t *topicres);
5493
5495
5494
5496
/**
5495
5497
* @name Admin API
5496
- *
5497
5498
* @{
5498
5499
*
5499
5500
* @brief The Admin API enables applications to perform administrative
@@ -5635,7 +5636,7 @@ rd_kafka_AdminOptions_set_request_timeout (rd_kafka_AdminOptions_t *options,
5635
5636
* RD_KAFKA_RESP_ERR__INVALID_ARG if timeout was out of range in which
5636
5637
* case an error string will be written \p errstr.
5637
5638
*
5638
- * @remark This option is valid for CreateTopics, DeleteTopics and
5639
+ * @remark This option is valid for CreateTopics, DeleteTopics and
5639
5640
* CreatePartitions.
5640
5641
*/
5641
5642
RD_EXPORT rd_kafka_resp_err_t
@@ -5713,13 +5714,13 @@ rd_kafka_AdminOptions_set_opaque (rd_kafka_AdminOptions_t *options,
5713
5714
5714
5715
5715
5716
5716
- /**
5717
- * @section CreateTopics - create topics in cluster
5718
- *
5717
+ /*
5718
+ * CreateTopics - create topics in cluster.
5719
5719
*
5720
5720
*/
5721
5721
5722
5722
5723
+ /*! Defines a new topic to be created. */
5723
5724
typedef struct rd_kafka_NewTopic_s rd_kafka_NewTopic_t ;
5724
5725
5725
5726
/**
@@ -5844,7 +5845,7 @@ rd_kafka_CreateTopics (rd_kafka_t *rk,
5844
5845
*
5845
5846
* The returned \p topics life-time is the same as the \p result object.
5846
5847
*
5847
- * @param result Result to get topics from.
5848
+ * @param result Result to get topics from.
5848
5849
* @param cntp Updated to the number of elements in the array.
5849
5850
*/
5850
5851
RD_EXPORT const rd_kafka_topic_result_t * *
@@ -5856,12 +5857,12 @@ rd_kafka_CreateTopics_result_topics (
5856
5857
5857
5858
5858
5859
5859
- /**
5860
- * @section DeleteTopics - delete topics from cluster
5861
- *
5860
+ /*
5861
+ * DeleteTopics - delete topics from cluster
5862
5862
*
5863
5863
*/
5864
5864
5865
+ /*! Represents a topic to be deleted. */
5865
5866
typedef struct rd_kafka_DeleteTopic_s rd_kafka_DeleteTopic_t ;
5866
5867
5867
5868
/**
@@ -5937,12 +5938,11 @@ rd_kafka_DeleteTopics_result_topics (
5937
5938
5938
5939
5939
5940
/**
5940
- * @section CreatePartitions - add partitions to topic.
5941
- *
5941
+ * CreatePartitions - add partitions to topic.
5942
5942
*
5943
5943
*/
5944
5944
5945
- /*! NewPartitions */
5945
+ /*! Defines a new partition to be created. */
5946
5946
typedef struct rd_kafka_NewPartitions_s rd_kafka_NewPartitions_t ;
5947
5947
5948
5948
/**
@@ -6061,36 +6061,38 @@ rd_kafka_CreatePartitions_result_topics (
6061
6061
6062
6062
6063
6063
/**
6064
- * @section Cluster, broker, topic configuration entries, sources, etc.
6065
- *
6066
- * These entities relate to the cluster, not the local client.
6067
- *
6068
- * @sa rd_kafka_conf_set(), et.al. for local client configuration.
6064
+ * Cluster, broker, topic configuration entries, sources, etc.
6069
6065
*
6070
6066
*/
6071
6067
6072
- /*!
6073
- * Apache Kafka config sources
6068
+ /**
6069
+ * @enum rd_kafka_ConfigSource_t
6070
+ *
6071
+ * @brief Apache Kafka config sources.
6072
+ *
6073
+ * @remark These entities relate to the cluster, not the local client.
6074
+ *
6075
+ * @sa rd_kafka_conf_set(), et.al. for local client configuration.
6074
6076
*/
6075
6077
typedef enum rd_kafka_ConfigSource_t {
6076
- /**< Source unknown, e.g., in the ConfigEntry used for alter requests
6077
- * where source is not set */
6078
+ /** Source unknown, e.g., in the ConfigEntry used for alter requests
6079
+ * where source is not set */
6078
6080
RD_KAFKA_CONFIG_SOURCE_UNKNOWN_CONFIG = 0 ,
6079
- /**< Dynamic topic config that is configured for a specific topic */
6081
+ /** Dynamic topic config that is configured for a specific topic */
6080
6082
RD_KAFKA_CONFIG_SOURCE_DYNAMIC_TOPIC_CONFIG = 1 ,
6081
- /**< Dynamic broker config that is configured for a specific broker */
6083
+ /** Dynamic broker config that is configured for a specific broker */
6082
6084
RD_KAFKA_CONFIG_SOURCE_DYNAMIC_BROKER_CONFIG = 2 ,
6083
- /**< Dynamic broker config that is configured as default for all
6084
- * brokers in the cluster */
6085
+ /** Dynamic broker config that is configured as default for all
6086
+ * brokers in the cluster */
6085
6087
RD_KAFKA_CONFIG_SOURCE_DYNAMIC_DEFAULT_BROKER_CONFIG = 3 ,
6086
- /**< Static broker config provided as broker properties at startup
6087
- * (e.g. from server.properties file) */
6088
+ /** Static broker config provided as broker properties at startup
6089
+ * (e.g. from server.properties file) */
6088
6090
RD_KAFKA_CONFIG_SOURCE_STATIC_BROKER_CONFIG = 4 ,
6089
- /**< Built-in default configuration for configs that have a
6090
- * default value */
6091
+ /** Built-in default configuration for configs that have a
6092
+ * default value */
6091
6093
RD_KAFKA_CONFIG_SOURCE_DEFAULT_CONFIG = 5 ,
6092
6094
6093
- /**< Number of source types defined */
6095
+ /** Number of source types defined */
6094
6096
RD_KAFKA_CONFIG_SOURCE__CNT ,
6095
6097
} rd_kafka_ConfigSource_t ;
6096
6098
@@ -6102,7 +6104,7 @@ RD_EXPORT const char *
6102
6104
rd_kafka_ConfigSource_name (rd_kafka_ConfigSource_t confsource );
6103
6105
6104
6106
6105
- /*! ConfigEntry */
6107
+ /*! Apache Kafka configuration entry. */
6106
6108
typedef struct rd_kafka_ConfigEntry_s rd_kafka_ConfigEntry_t ;
6107
6109
6108
6110
/**
@@ -6189,7 +6191,7 @@ typedef enum rd_kafka_ResourceType_t {
6189
6191
RD_EXPORT const char *
6190
6192
rd_kafka_ResourceType_name (rd_kafka_ResourceType_t restype );
6191
6193
6192
- /*! ConfigResource */
6194
+ /*! Apache Kafka configuration resource. */
6193
6195
typedef struct rd_kafka_ConfigResource_s rd_kafka_ConfigResource_t ;
6194
6196
6195
6197
@@ -6282,8 +6284,7 @@ rd_kafka_ConfigResource_error_string (const rd_kafka_ConfigResource_t *config);
6282
6284
6283
6285
6284
6286
/**
6285
- * @section AlterConfigs - alter cluster configuration.
6286
- *
6287
+ * AlterConfigs - alter cluster configuration.
6287
6288
*
6288
6289
*/
6289
6290
@@ -6345,8 +6346,7 @@ rd_kafka_AlterConfigs_result_resources (
6345
6346
6346
6347
6347
6348
/**
6348
- * @section DescribeConfigs - retrieve cluster configuration.
6349
- *
6349
+ * DescribeConfigs - retrieve cluster configuration.
6350
6350
*
6351
6351
*/
6352
6352
@@ -6357,14 +6357,14 @@ rd_kafka_AlterConfigs_result_resources (
6357
6357
* The returned configuration includes default values and the
6358
6358
* rd_kafka_ConfigEntry_is_default() or rd_kafka_ConfigEntry_source()
6359
6359
* methods may be used to distinguish them from user supplied values.
6360
- *
6360
+ *
6361
6361
* The value of config entries where rd_kafka_ConfigEntry_is_sensitive()
6362
6362
* is true will always be NULL to avoid disclosing sensitive
6363
6363
* information, such as security settings.
6364
- *
6364
+ *
6365
6365
* Configuration entries where rd_kafka_ConfigEntry_is_read_only()
6366
6366
* is true can't be updated (with rd_kafka_AlterConfigs()).
6367
- *
6367
+ *
6368
6368
* Synonym configuration entries are returned if the broker supports
6369
6369
* it (broker version >= 1.1.0). See rd_kafka_ConfigEntry_synonyms().
6370
6370
*
0 commit comments