Browse Source

refactor

master
yangxiaodong 7 years ago
parent
commit
29d31f1b2b
1 changed files with 20 additions and 0 deletions
  1. +20
    -0
      samples/Sample.Kafka/Controllers/ValuesController.cs

+ 20
- 0
samples/Sample.Kafka/Controllers/ValuesController.cs View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Cap.Consistency.Attributes;
using Cap.Consistency.Consumer;
using Microsoft.AspNetCore.Mvc;

namespace Sample.Kafka.Controllers
{
[Route("api/[controller]")]
public class ValuesController : Controller, IConsumerService
{

[KafkaTopic("zzwl.topic.finace.callBack", IsOneWay = true)]
public void KafkaTest() {
Console.WriteLine("kafka test invoked");
}
}
}

Loading…
Cancel
Save