mirror of https://github.com/dapr/docs.git
Merge pull request #4431 from hhunter-ms/v1.14
Remove changes that were meant for 1.15
This commit is contained in:
commit
1d7c51b43a
|
@ -203,47 +203,7 @@ As messages are sent to the given message handler code, there is no concept of r
|
||||||
|
|
||||||
The example below shows the different ways to stream subscribe to a topic.
|
The example below shows the different ways to stream subscribe to a topic.
|
||||||
|
|
||||||
{{< tabs ".NET" Go>}}
|
{{< tabs Go>}}
|
||||||
|
|
||||||
{{% codetab %}}
|
|
||||||
|
|
||||||
```csharp
|
|
||||||
using Dapr.Messaging.PublishSubscribe;
|
|
||||||
|
|
||||||
var clientBuilder = new DaprPublishSubscribeClientBuilder();
|
|
||||||
var daprMessagingClient = clientBuilder.Build();
|
|
||||||
|
|
||||||
async Task<TopicResponseAction> HandleMessage(TopicMessage message, CancellationToken cancellationToken = default)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
//Do something with the message
|
|
||||||
Console.WriteLine(Encoding.UTF8.GetString(message.Data.Span));
|
|
||||||
|
|
||||||
return await Task.FromResult(TopicResponseAction.Success);
|
|
||||||
}
|
|
||||||
catch
|
|
||||||
{
|
|
||||||
return await Task.FromResult(TopicResponseAction.Retry);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//Create a dynamic streaming subscription
|
|
||||||
var subscription = daprMessagingClient.Register("pubsub", "myTopic",
|
|
||||||
new DaprSubscriptionOptions(new MessageHandlingPolicy(TimeSpan.FromSeconds(15), TopicResponseAction.Retry)),
|
|
||||||
HandleMessage, CancellationToken.None);
|
|
||||||
|
|
||||||
//Subscribe to messages on it with a timeout of 30 seconds
|
|
||||||
var cancellationTokenSource = new CancellationTokenSource(TimeSpan.FromSeconds(30));
|
|
||||||
await subscription.SubscribeAsync(cancellationTokenSource.Token);
|
|
||||||
|
|
||||||
await Task.Delay(TimeSpan.FromMinutes(1));
|
|
||||||
|
|
||||||
//When you're done with the subscription, simply dispose of it
|
|
||||||
await subscription.DisposeAsync();
|
|
||||||
```
|
|
||||||
|
|
||||||
{{% /codetab %}}
|
|
||||||
|
|
||||||
{{% codetab %}}
|
{{% codetab %}}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue