-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ISSUE #776] Add push consumer for normal/fifo message, namespace sup…
…port, reentrant message receiving support in C# SDK (#777) Add push consumer for normal/fifo message, namespace support, reentrant message receiving support in C# --------- Co-authored-by: tsaitsung-han.tht <tsaitsung-han.tht@alibaba-inc.com>
- Loading branch information
1 parent
f4c3878
commit 4076e2b
Showing
68 changed files
with
6,110 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
using Microsoft.Extensions.Logging; | ||
using Org.Apache.Rocketmq; | ||
|
||
namespace examples | ||
{ | ||
public class PushConsumerExample | ||
{ | ||
private static readonly ILogger Logger = MqLogManager.CreateLogger(typeof(PushConsumerExample).FullName); | ||
|
||
private static readonly string AccessKey = Environment.GetEnvironmentVariable("ROCKETMQ_ACCESS_KEY"); | ||
private static readonly string SecretKey = Environment.GetEnvironmentVariable("ROCKETMQ_SECRET_KEY"); | ||
private static readonly string Endpoint = Environment.GetEnvironmentVariable("ROCKETMQ_ENDPOINT"); | ||
|
||
internal static async Task QuickStart() | ||
{ | ||
// Enable the switch if you use .NET Core 3.1 and want to disable TLS/SSL. | ||
// AppContext.SetSwitch("System.Net.Http.SocketsHttpHandler.Http2UnencryptedSupport", true); | ||
|
||
// Credential provider is optional for client configuration. | ||
var credentialsProvider = new StaticSessionCredentialsProvider(AccessKey, SecretKey); | ||
var clientConfig = new ClientConfig.Builder() | ||
.SetEndpoints(Endpoint) | ||
.SetCredentialsProvider(credentialsProvider) | ||
.Build(); | ||
|
||
// Add your subscriptions. | ||
const string consumerGroup = "yourConsumerGroup"; | ||
const string topic = "yourTopic"; | ||
var subscription = new Dictionary<string, FilterExpression> | ||
{ { topic, new FilterExpression("*") } }; | ||
|
||
var pushConsumer = await new PushConsumer.Builder() | ||
.SetClientConfig(clientConfig) | ||
.SetConsumerGroup(consumerGroup) | ||
.SetSubscriptionExpression(subscription) | ||
.SetMessageListener(new CustomMessageListener()) | ||
.Build(); | ||
|
||
Thread.Sleep(Timeout.Infinite); | ||
|
||
// Close the push consumer if you don't need it anymore. | ||
// await pushConsumer.DisposeAsync(); | ||
} | ||
|
||
private class CustomMessageListener : IMessageListener | ||
{ | ||
public ConsumeResult Consume(MessageView messageView) | ||
{ | ||
// Handle the received message and return consume result. | ||
Logger.LogInformation($"Consume message={messageView}"); | ||
return ConsumeResult.SUCCESS; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace Org.Apache.Rocketmq | ||
{ | ||
public class Assignment | ||
{ | ||
public Assignment(MessageQueue messageQueue) | ||
{ | ||
MessageQueue = messageQueue ?? throw new ArgumentNullException(nameof(messageQueue)); | ||
} | ||
|
||
public MessageQueue MessageQueue { get; } | ||
|
||
public override bool Equals(object obj) | ||
{ | ||
if (this == obj) return true; | ||
if (obj == null || GetType() != obj.GetType()) return false; | ||
|
||
var other = (Assignment)obj; | ||
return EqualityComparer<MessageQueue>.Default.Equals(MessageQueue, other.MessageQueue); | ||
} | ||
|
||
public override int GetHashCode() | ||
{ | ||
return EqualityComparer<MessageQueue>.Default.GetHashCode(MessageQueue); | ||
} | ||
|
||
public override string ToString() | ||
{ | ||
return $"Assignment{{messageQueue={MessageQueue}}}"; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using Apache.Rocketmq.V2; | ||
|
||
namespace Org.Apache.Rocketmq | ||
{ | ||
public class Assignments | ||
{ | ||
private readonly List<Assignment> _assignmentList; | ||
|
||
public Assignments(List<Assignment> assignmentList) | ||
{ | ||
_assignmentList = assignmentList; | ||
} | ||
|
||
public override bool Equals(object obj) | ||
{ | ||
if (this == obj) | ||
{ | ||
return true; | ||
} | ||
|
||
if (obj == null || GetType() != obj.GetType()) | ||
{ | ||
return false; | ||
} | ||
|
||
var other = (Assignments)obj; | ||
return _assignmentList.SequenceEqual(other._assignmentList); | ||
} | ||
|
||
public override int GetHashCode() | ||
{ | ||
return HashCode.Combine(_assignmentList); | ||
} | ||
|
||
public override string ToString() | ||
{ | ||
return $"{nameof(Assignments)} {{ {nameof(_assignmentList)} = {_assignmentList} }}"; | ||
} | ||
|
||
public List<Assignment> GetAssignmentList() | ||
{ | ||
return _assignmentList; | ||
} | ||
} | ||
} |
Oops, something went wrong.