Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable possibility for RawConsumers to use SuperStreams #232

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions RabbitMQ.Stream.Client/PublicAPI.Unshipped.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
RabbitMQ.Stream.Client.RawConsumerConfig.SuperStream.get -> string
RabbitMQ.Stream.Client.RawConsumerConfig.SuperStream.set -> void
RabbitMQ.Stream.Client.AbstractEntity.MaybeCancelToken() -> void
RabbitMQ.Stream.Client.AbstractEntity.Token.get -> System.Threading.CancellationToken
RabbitMQ.Stream.Client.Chunk.MagicVersion.get -> byte
3 changes: 1 addition & 2 deletions RabbitMQ.Stream.Client/RawConsumer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ internal void Validate()
// it is needed to be able to add the subscriptions arguments
// see consumerProperties["super-stream"] = SuperStream;
// in this way the consumer is notified is something happens in the super stream
// it is internal because it is used only internally
internal string SuperStream { get; set; }
public string SuperStream { get; set; }

public IOffsetType OffsetSpec { get; set; } = new OffsetTypeNext();

Expand Down