[ISSUE #273 ]Add .NET Client to RocketMQ #273#334
Closed
ClementIV wants to merge 7 commits intoapache:masterfrom
ClementIV:master
Closed
[ISSUE #273 ]Add .NET Client to RocketMQ #273#334ClementIV wants to merge 7 commits intoapache:masterfrom ClementIV:master
ClementIV wants to merge 7 commits intoapache:masterfrom
ClementIV:master
Conversation
Closed
| #region default Options | ||
|
|
||
| private HandleRef _handleRef; | ||
| private readonly string LogPath = Environment.CurrentDirectory.ToString() + "\\PullConsumer_log.txt"; |
Contributor
There was a problem hiding this comment.
Environment.CurrentDirectory已经是string类型了。不用再调用ToString()方法\\建议使用System.IO.Path.DirectorySeparatorChar代替。将来在 linux 上也不会有问题。
| public IPushConsumerBuilder SetPushConsumerGroupId(string groupId) | ||
| public MQPushConsumer(string groupId) | ||
| { | ||
|
|
|
|
||
| public MQPushConsumer(string groupId, string nameServerAddress) | ||
| { | ||
|
|
| public static extern int ReleasePullResult(CPullResult pullResult); | ||
|
|
||
| } | ||
|
|
| public const string RocketMQDriverDllName = "rocketmq-client-cpp.dll"; | ||
| public const string RocketMQDriverDllName = "CClient\\rocketmq-client-cpp.dll"; | ||
|
|
||
| public const string DiagnosticListenerName = "rocketmq-driver"; |
Contributor
There was a problem hiding this comment.
以下四个常量这里面没有使用,如果不打算用,最好删除。
Contributor
|
现在的:rocketmq-client-dotnet/src/ |
|
what happend ? |
Member
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What is the purpose of the change
Add .NET Client to RocketMQ
Brief changelog
Verifying this change
-[ISSUE #273 ] Add .NET Client to RocketMQ
Add .NET Client
readme.mdfor more information.rocketmqtest environmentAliyun RocketMQtested related APIsUnit Test