Browse Source

rename cap attribute routekey

master
Savorboard 7 years ago
parent
commit
847a9ecbce
5 changed files with 11 additions and 11 deletions
  1. +6
    -6
      src/DotNetCore.CAP.Kafka/CapSubscribeAttribute.cs
  2. +1
    -1
      src/DotNetCore.CAP.Kafka/KafkaConsumerClient.cs
  3. +1
    -1
      src/DotNetCore.CAP.RabbitMQ/CapSubscribeAttribute.cs
  4. +1
    -1
      src/DotNetCore.CAP.RabbitMQ/RabbitMQConsumerClient.cs
  5. +2
    -2
      src/DotNetCore.CAP/Abstractions/TopicAttribute.cs

+ 6
- 6
src/DotNetCore.CAP.Kafka/CapSubscribeAttribute.cs View File

@@ -4,24 +4,24 @@ namespace DotNetCore.CAP.Kafka
{ {
public class CapSubscribeAttribute : TopicAttribute public class CapSubscribeAttribute : TopicAttribute
{ {
public CapSubscribeAttribute(string topicName)
: this(topicName, 0)
public CapSubscribeAttribute(string name)
: this(name, 0)
{ {
} }


/// <summary> /// <summary>
/// Not support /// Not support
/// </summary> /// </summary>
public CapSubscribeAttribute(string topicName, int partition)
: this(topicName, partition, 0)
public CapSubscribeAttribute(string name, int partition)
: this(name, partition, 0)
{ {
} }


/// <summary> /// <summary>
/// Not support /// Not support
/// </summary> /// </summary>
public CapSubscribeAttribute(string topicName, int partition, long offset)
: base(topicName)
public CapSubscribeAttribute(string name, int partition, long offset)
: base(name)
{ {
Offset = offset; Offset = offset;
Partition = partition; Partition = partition;


+ 1
- 1
src/DotNetCore.CAP.Kafka/KafkaConsumerClient.cs View File

@@ -73,7 +73,7 @@ namespace DotNetCore.CAP.Kafka
var message = new MessageContext var message = new MessageContext
{ {
Group = _groupId, Group = _groupId,
KeyName = e.Topic,
Name = e.Topic,
Content = e.Value Content = e.Value
}; };
MessageReceieved?.Invoke(sender, message); MessageReceieved?.Invoke(sender, message);


+ 1
- 1
src/DotNetCore.CAP.RabbitMQ/CapSubscribeAttribute.cs View File

@@ -4,7 +4,7 @@ namespace DotNetCore.CAP.RabbitMQ
{ {
public class CapSubscribeAttribute : TopicAttribute public class CapSubscribeAttribute : TopicAttribute
{ {
public CapSubscribeAttribute(string routingKey) : base(routingKey)
public CapSubscribeAttribute(string name) : base(name)
{ {


} }


+ 1
- 1
src/DotNetCore.CAP.RabbitMQ/RabbitMQConsumerClient.cs View File

@@ -87,7 +87,7 @@ namespace DotNetCore.CAP.RabbitMQ
var message = new MessageContext var message = new MessageContext
{ {
Group = _queueName, Group = _queueName,
KeyName = e.RoutingKey,
Name = e.RoutingKey,
Content = Encoding.UTF8.GetString(e.Body) Content = Encoding.UTF8.GetString(e.Body)
}; };
MessageReceieved?.Invoke(sender, message); MessageReceieved?.Invoke(sender, message);


+ 2
- 2
src/DotNetCore.CAP/Abstractions/TopicAttribute.cs View File

@@ -8,9 +8,9 @@ namespace DotNetCore.CAP.Abstractions
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, AllowMultiple = true)] [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, AllowMultiple = true)]
public abstract class TopicAttribute : Attribute public abstract class TopicAttribute : Attribute
{ {
protected TopicAttribute(string topicName)
protected TopicAttribute(string name)
{ {
Name = topicName;
Name = name;
} }


/// <summary> /// <summary>


Loading…
Cancel
Save