From 85a41073923a928cfc5ed88decc12b8be54997b0 Mon Sep 17 00:00:00 2001 From: Anthony Dodd Date: Fri, 18 Jan 2019 00:19:38 -0600 Subject: [PATCH] A small update to some docs. --- src/streaming/streaming_client.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/streaming/streaming_client.rs b/src/streaming/streaming_client.rs index 4e44fa5..4dbcf6e 100644 --- a/src/streaming/streaming_client.rs +++ b/src/streaming/streaming_client.rs @@ -65,7 +65,8 @@ pub struct SubscribeOptions { /// Control whether a subscription will automatically or manually ack received messages. /// /// By default, subscriptions will be setup to automatically ack messages which are received on -/// the stream. Use `Manual` mode to control the acks yourself. +/// the stream. Use `Manual` mode to control the acks yourself. Simply call `StreamingMessage.ack` +/// to ack a message. #[derive(Debug, Clone)] pub enum SubscriptionAckMode { Auto,